Skip to content

Create Ip Access Settings

workspacesweb_create_ip_access_settings R Documentation

Creates an IP access settings resource that can be associated with a web portal

Description

Creates an IP access settings resource that can be associated with a web portal.

Usage

workspacesweb_create_ip_access_settings(additionalEncryptionContext,
  clientToken, customerManagedKey, description, displayName, ipRules,
  tags)

Arguments

additionalEncryptionContext

Additional encryption context of the IP access settings.

clientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.

If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.

customerManagedKey

The custom managed key of the IP access settings.

description

The description of the IP access settings.

displayName

The display name of the IP access settings.

ipRules

[required] The IP rules of the IP access settings.

tags

The tags to add to the IP access settings resource. A tag is a key-value pair.

Value

A list with the following syntax:

list(
  ipAccessSettingsArn = "string"
)

Request syntax

svc$create_ip_access_settings(
  additionalEncryptionContext = list(
    "string"
  ),
  clientToken = "string",
  customerManagedKey = "string",
  description = "string",
  displayName = "string",
  ipRules = list(
    list(
      description = "string",
      ipRange = "string"
    )
  ),
  tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)