AWS code-library documentation change
Summary
Added PowerShell V5 example for creating network ACL
Security assessment
Documents security feature (network ACL creation) but doesn't address specific security issues
Diff
diff --git a/code-library/latest/ug/ec2_example_ec2_CreateNetworkAcl_section.md b/code-library/latest/ug/ec2_example_ec2_CreateNetworkAcl_section.md index 51180c5ac..24249dab3 100644 --- a//code-library/latest/ug/ec2_example_ec2_CreateNetworkAcl_section.md +++ b//code-library/latest/ug/ec2_example_ec2_CreateNetworkAcl_section.md @@ -87,0 +88,24 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example creates a network ACL for the specified VPC.** + + + New-EC2NetworkAcl -VpcId vpc-12345678 + + +**Output:** + + + Associations : {} + Entries : {Amazon.EC2.Model.NetworkAclEntry, Amazon.EC2.Model.NetworkAclEntry} + IsDefault : False + NetworkAclId : acl-12345678 + Tags : {} + VpcId : vpc-12345678 + + * For API details, see [CreateNetworkAcl](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +