Update Resource Configuration
vpclattice_update_resource_configuration | R Documentation |
Updates the specified resource configuration¶
Description¶
Updates the specified resource configuration.
Usage¶
vpclattice_update_resource_configuration(
allowAssociationToShareableServiceNetwork, portRanges,
resourceConfigurationDefinition, resourceConfigurationIdentifier)
Arguments¶
allowAssociationToShareableServiceNetwork
Indicates whether to add the resource configuration to service networks that are shared with other accounts.
portRanges
The TCP port ranges that a consumer can use to access a resource configuration. You can separate port ranges with a comma. Example: 1-65535 or 1,2,22-30
resourceConfigurationDefinition
The resource configuration.
resourceConfigurationIdentifier
[required] The ID of the resource configuration.
Value¶
A list with the following syntax:
list(
allowAssociationToShareableServiceNetwork = TRUE|FALSE,
arn = "string",
id = "string",
name = "string",
portRanges = list(
"string"
),
protocol = "TCP",
resourceConfigurationDefinition = list(
arnResource = list(
arn = "string"
),
dnsResource = list(
domainName = "string",
ipAddressType = "IPV4"|"IPV6"|"DUALSTACK"
),
ipResource = list(
ipAddress = "string"
)
),
resourceConfigurationGroupId = "string",
resourceGatewayId = "string",
status = "ACTIVE"|"CREATE_IN_PROGRESS"|"UPDATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
type = "GROUP"|"CHILD"|"SINGLE"|"ARN"
)
Request syntax¶
svc$update_resource_configuration(
allowAssociationToShareableServiceNetwork = TRUE|FALSE,
portRanges = list(
"string"
),
resourceConfigurationDefinition = list(
arnResource = list(
arn = "string"
),
dnsResource = list(
domainName = "string",
ipAddressType = "IPV4"|"IPV6"|"DUALSTACK"
),
ipResource = list(
ipAddress = "string"
)
),
resourceConfigurationIdentifier = "string"
)