Interface CfnSecurityGroupIngressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityGroupIngressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:24:59.246Z")
@Stability(Stable)
public interface CfnSecurityGroupIngressProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSecurityGroupIngress
.
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.elasticache.*; CfnSecurityGroupIngressProps cfnSecurityGroupIngressProps = CfnSecurityGroupIngressProps.builder() .cacheSecurityGroupName("cacheSecurityGroupName") .ec2SecurityGroupName("ec2SecurityGroupName") // the properties below are optional .ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSecurityGroupIngressProps
static final class
An implementation forCfnSecurityGroupIngressProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCacheSecurityGroupName
The name of the Cache Security Group to authorize.- See Also:
-
getEc2SecurityGroupName
Name of the EC2 Security Group to include in the authorization.- See Also:
-
getEc2SecurityGroupOwnerId
Specifies the Amazon Account ID of the owner of the EC2 security group specified in the EC2SecurityGroupName property.The Amazon access key ID is not an acceptable value.
- See Also:
-
builder
-