Security Group Egress
data class SecurityGroupEgress(val cidrBlocks: List<String>? = null, val description: String? = null, val fromPort: Int, val ipv6CidrBlocks: List<String>? = null, val prefixListIds: List<String>? = null, val protocol: String, val securityGroups: List<String>? = null, val self: Boolean? = null, val toPort: Int)
Properties
Link copied to clipboard
List of CIDR blocks.
Link copied to clipboard
Description of this egress rule.
Link copied to clipboard
List of IPv6 CIDR blocks.
Link copied to clipboard
List of Prefix List IDs.
Link copied to clipboard
Protocol. If you select a protocol of -1
(semantically equivalent to all
, which is not a valid value here), you must specify a from_port
and to_port
equal to 0. The supported values are defined in the IpProtocol
argument in the IpPermission API reference.
Link copied to clipboard
List of security groups. A group name can be used relative to the default VPC. Otherwise, group ID.