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¶
additionalEncryptionContextAdditional encryption context of the IP access settings.
clientTokenA 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.
customerManagedKeyThe custom managed key of the IP access settings.
descriptionThe description of the IP access settings.
displayNameThe display name of the IP access settings.
ipRules[required] The IP rules of the IP access settings.
tagsThe tags to add to the IP access settings resource. A tag is a key-value pair.
Value¶
A list with the following syntax:
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"
)
)
)