Update Ip Access Settings
workspacesweb_update_ip_access_settings | R Documentation |
Updates IP access settings¶
Description¶
Updates IP access settings.
Usage¶
workspacesweb_update_ip_access_settings(clientToken, description,
displayName, ipAccessSettingsArn, ipRules)
Arguments¶
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 return 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.
description
The description of the IP access settings.
displayName
The display name of the IP access settings.
ipAccessSettingsArn
[required] The ARN of the IP access settings.
ipRules
The updated IP rules of the IP access settings.
Value¶
A list with the following syntax:
list(
ipAccessSettings = list(
additionalEncryptionContext = list(
"string"
),
associatedPortalArns = list(
"string"
),
creationDate = as.POSIXct(
"2015-01-01"
),
customerManagedKey = "string",
description = "string",
displayName = "string",
ipAccessSettingsArn = "string",
ipRules = list(
list(
description = "string",
ipRange = "string"
)
)
)
)