paws.compute (version 0.1.0)

ec2_replace_network_acl_association: Changes which network ACL a subnet is associated with

Description

Changes which network ACL a subnet is associated with. By default when you create a subnet, it's automatically associated with the default network ACL. For more information, see Network ACLs in the Amazon Virtual Private Cloud User Guide.

Usage

ec2_replace_network_acl_association(AssociationId, DryRun, NetworkAclId)

Arguments

AssociationId

[required] The ID of the current association between the original network ACL and the subnet.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

NetworkAclId

[required] The ID of the new network ACL to associate with the subnet.

Request syntax

svc$replace_network_acl_association(
  AssociationId = "string",
  DryRun = TRUE|FALSE,
  NetworkAclId = "string"
)

Details

This is an idempotent operation.

Examples

Run this code
# NOT RUN {
# This example associates the specified network ACL with the subnet for
# the specified network ACL association.
# }
# NOT RUN {
svc$replace_network_acl_association(
  AssociationId = "aclassoc-e5b95c8c",
  NetworkAclId = "acl-5fb85d36"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab