Class CfnSecurityGroupIngress
- All Implemented Interfaces:
- IConstruct,- IDependable,- IInspectable,- software.amazon.jsii.JsiiSerializable,- software.constructs.IConstruct
AWS::EC2::SecurityGroupIngress.
 Adds an inbound rule to a security group.
An inbound rule permits instances to receive traffic from the specified IPv4 or IPv6 CIDR address range, or from the instances associated with the specified security group.
 You must specify only one of the following properties: CidrIp , CidrIpv6 , SourcePrefixListId , SourceSecurityGroupId , or SourceSecurityGroupName .
 
You specify a protocol for each rule (for example, TCP). For TCP and UDP, you must also specify a port or port range. For ICMP/ICMPv6, you must also specify the ICMP/ICMPv6 type and code. You can use -1 to mean all types or all codes.
 You must specify a source security group ( SourcePrefixListId , SourceSecurityGroupId , or SourceSecurityGroupName ) or a CIDR range ( CidrIp or CidrIpv6 ). If you do not specify one of these parameters, the stack will launch successfully but the rule will not be added to the security group.
 
Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 CfnSecurityGroupIngress cfnSecurityGroupIngress = CfnSecurityGroupIngress.Builder.create(this, "MyCfnSecurityGroupIngress")
         .ipProtocol("ipProtocol")
         // the properties below are optional
         .cidrIp("cidrIp")
         .cidrIpv6("cidrIpv6")
         .description("description")
         .fromPort(123)
         .groupId("groupId")
         .groupName("groupName")
         .sourcePrefixListId("sourcePrefixListId")
         .sourceSecurityGroupId("sourceSecurityGroupId")
         .sourceSecurityGroupName("sourceSecurityGroupName")
         .sourceSecurityGroupOwnerId("sourceSecurityGroupOwnerId")
         .toPort(123)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionstatic final classA fluent builder forCfnSecurityGroupIngress.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstructIConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstructsoftware.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectableIInspectable.Jsii$Default, IInspectable.Jsii$Proxy
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class.
- 
Constructor SummaryConstructorsModifierConstructorDescriptionCfnSecurityGroupIngress(Construct scope, String id, CfnSecurityGroupIngressProps props) Create a newAWS::EC2::SecurityGroupIngress.protectedCfnSecurityGroupIngress(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnSecurityGroupIngress(software.amazon.jsii.JsiiObjectRef objRef) 
- 
Method SummaryModifier and TypeMethodDescriptionThe IPv4 address range, in CIDR format.The IPv6 address range, in CIDR format.Updates the description of an ingress (inbound) security group rule.The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.The ID of the security group.The name of the security group.The ID of a prefix list.The ID of the security group.[Default VPC] The name of the source security group.[nondefault VPC] The AWS account ID for the source security group, if the source security group is in a different account.The end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidThe IPv4 address range, in CIDR format.voidsetCidrIpv6(String value) The IPv6 address range, in CIDR format.voidsetDescription(String value) Updates the description of an ingress (inbound) security group rule.voidsetFromPort(Number value) The start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.voidsetGroupId(String value) The ID of the security group.voidsetGroupName(String value) The name of the security group.voidsetIpProtocol(String value) voidsetSourcePrefixListId(String value) The ID of a prefix list.voidsetSourceSecurityGroupId(String value) The ID of the security group.voidsetSourceSecurityGroupName(String value) [Default VPC] The name of the source security group.void[nondefault VPC] The AWS account ID for the source security group, if the source security group is in a different account.voidThe end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.Methods inherited from class software.amazon.awscdk.core.CfnResourceaddDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.core.CfnRefElementgetRefMethods inherited from class software.amazon.awscdk.core.CfnElementgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.amazon.awscdk.core.ConstructgetNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Field Details- 
CFN_RESOURCE_TYPE_NAMEThe CloudFormation resource type name for this resource class.
 
- 
- 
Constructor Details- 
CfnSecurityGroupIngressprotected CfnSecurityGroupIngress(software.amazon.jsii.JsiiObjectRef objRef) 
- 
CfnSecurityGroupIngressprotected CfnSecurityGroupIngress(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
CfnSecurityGroupIngress@Stability(Stable) public CfnSecurityGroupIngress(@NotNull Construct scope, @NotNull String id, @NotNull CfnSecurityGroupIngressProps props) Create a newAWS::EC2::SecurityGroupIngress.- Parameters:
- scope-- scope in which this resource is defined.
 
- id-- scoped id of the resource.
 
- props-- resource properties.
 
 
 
- 
- 
Method Details- 
inspectExamines the CloudFormation resource and discloses attributes.- Specified by:
- inspectin interface- IInspectable
- Parameters:
- inspector-- tree inspector to collect and process attributes.
 
 
- 
renderProperties@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
- renderPropertiesin class- CfnResource
- Parameters:
- props- This parameter is required.
 
- 
getCfnProperties- Overrides:
- getCfnPropertiesin class- CfnResource
 
- 
getIpProtocolThe IP protocol name (tcp,udp,icmp,icmpv6) or number (see Protocol Numbers ).Use -1to specify all protocols. When authorizing security group rules, specifying-1or a protocol number other thantcp,udp,icmp, oricmpv6allows traffic on all ports, regardless of any port range you specify. Fortcp,udp, andicmp, you must specify a port range. Foricmpv6, the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
- 
setIpProtocolThe IP protocol name (tcp,udp,icmp,icmpv6) or number (see Protocol Numbers ).Use -1to specify all protocols. When authorizing security group rules, specifying-1or a protocol number other thantcp,udp,icmp, oricmpv6allows traffic on all ports, regardless of any port range you specify. Fortcp,udp, andicmp, you must specify a port range. Foricmpv6, the port range is optional; if you omit the port range, traffic for all types and codes is allowed.
- 
getCidrIpThe IPv4 address range, in CIDR format.You must specify a source security group ( SourcePrefixListIdorSourceSecurityGroupId) or a CIDR range (CidrIporCidrIpv6).For examples of rules that you can add to security groups for specific access scenarios, see Security group rules for different use cases in the Amazon EC2 User Guide . 
- 
setCidrIpThe IPv4 address range, in CIDR format.You must specify a source security group ( SourcePrefixListIdorSourceSecurityGroupId) or a CIDR range (CidrIporCidrIpv6).For examples of rules that you can add to security groups for specific access scenarios, see Security group rules for different use cases in the Amazon EC2 User Guide . 
- 
getCidrIpv6The IPv6 address range, in CIDR format.You must specify a source security group ( SourcePrefixListIdorSourceSecurityGroupId) or a CIDR range (CidrIporCidrIpv6).For examples of rules that you can add to security groups for specific access scenarios, see Security group rules for different use cases in the Amazon EC2 User Guide . 
- 
setCidrIpv6The IPv6 address range, in CIDR format.You must specify a source security group ( SourcePrefixListIdorSourceSecurityGroupId) or a CIDR range (CidrIporCidrIpv6).For examples of rules that you can add to security groups for specific access scenarios, see Security group rules for different use cases in the Amazon EC2 User Guide . 
- 
getDescriptionUpdates the description of an ingress (inbound) security group rule.You can replace an existing description, or add a description to a rule that did not have one previously. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$* 
- 
setDescriptionUpdates the description of an ingress (inbound) security group rule.You can replace an existing description, or add a description to a rule that did not have one previously. Constraints: Up to 255 characters in length. Allowed characters are a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=;{}!$* 
- 
getFromPortThe start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.A value of -1indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all codes.Use this for ICMP and any protocol that uses ports. 
- 
setFromPortThe start of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 type number.A value of -1indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all codes.Use this for ICMP and any protocol that uses ports. 
- 
getGroupIdThe ID of the security group.
- 
setGroupIdThe ID of the security group.
- 
getGroupNameThe name of the security group.Constraints: Up to 255 characters in length. Cannot start with sg-.Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$* 
- 
setGroupNameThe name of the security group.Constraints: Up to 255 characters in length. Cannot start with sg-.Valid characters: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$* 
- 
getSourcePrefixListIdThe ID of a prefix list.
- 
setSourcePrefixListIdThe ID of a prefix list.
- 
getSourceSecurityGroupIdThe ID of the security group.You must specify either the security group ID or the security group name. For security groups in a nondefault VPC, you must specify the security group ID. 
- 
setSourceSecurityGroupIdThe ID of the security group.You must specify either the security group ID or the security group name. For security groups in a nondefault VPC, you must specify the security group ID. 
- 
getSourceSecurityGroupName[Default VPC] The name of the source security group.You must specify either the security group ID or the security group name. You can't specify the group name in combination with an IP address range. Creates rules that grant full ICMP, UDP, and TCP access. For security groups in a nondefault VPC, you must specify the group ID. 
- 
setSourceSecurityGroupName[Default VPC] The name of the source security group.You must specify either the security group ID or the security group name. You can't specify the group name in combination with an IP address range. Creates rules that grant full ICMP, UDP, and TCP access. For security groups in a nondefault VPC, you must specify the group ID. 
- 
getSourceSecurityGroupOwnerId[nondefault VPC] The AWS account ID for the source security group, if the source security group is in a different account.You can't specify this property with an IP address range. Creates rules that grant full ICMP, UDP, and TCP access. If you specify SourceSecurityGroupNameorSourceSecurityGroupIdand that security group is owned by a different account than the account creating the stack, you must specifySourceSecurityGroupOwnerId; otherwise, this property is optional.
- 
setSourceSecurityGroupOwnerId[nondefault VPC] The AWS account ID for the source security group, if the source security group is in a different account.You can't specify this property with an IP address range. Creates rules that grant full ICMP, UDP, and TCP access. If you specify SourceSecurityGroupNameorSourceSecurityGroupIdand that security group is owned by a different account than the account creating the stack, you must specifySourceSecurityGroupOwnerId; otherwise, this property is optional.
- 
getToPortThe end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.A value of -1indicates all ICMP/ICMPv6 codes for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you must specify all codes.Use this for ICMP and any protocol that uses ports. 
- 
setToPortThe end of port range for the TCP and UDP protocols, or an ICMP/ICMPv6 code.A value of -1indicates all ICMP/ICMPv6 codes for the specified ICMP type. If you specify all ICMP/ICMPv6 types, you must specify all codes.Use this for ICMP and any protocol that uses ports. 
 
-