Security Group Ingress Args
data class SecurityGroupIngressArgs(val cidrBlocks: Output<List<String>>? = null, val description: Output<String>? = null, val fromPort: Output<Int>, val ipv6CidrBlocks: Output<List<String>>? = null, val prefixListIds: Output<List<String>>? = null, val protocol: Output<String>, val securityGroups: Output<List<String>>? = null, val self: Output<Boolean>? = null, val toPort: Output<Int>) : ConvertibleToJava<SecurityGroupIngressArgs>
Constructors
Link copied to clipboard
constructor(cidrBlocks: Output<List<String>>? = null, description: Output<String>? = null, fromPort: Output<Int>, ipv6CidrBlocks: Output<List<String>>? = null, prefixListIds: Output<List<String>>? = null, protocol: Output<String>, securityGroups: Output<List<String>>? = null, self: Output<Boolean>? = null, toPort: Output<Int>)
Properties
Link copied to clipboard
List of CIDR blocks.
Link copied to clipboard
Description of this ingress 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 on the IpPermission API reference. The following arguments are optional:
Link copied to clipboard
List of security groups. A group name can be used relative to the default VPC. Otherwise, group ID.