Interface CfnSecurityGroupIngressProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityGroupIngressProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:04.975Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityGroupIngressPropsstatic final classAn 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
-