Interface CfnSecurityGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSecurityGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.119Z")
@Stability(Stable)
public interface CfnSecurityGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSecurityGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.elasticache.*;
CfnSecurityGroupMixinProps cfnSecurityGroupMixinProps = CfnSecurityGroupMixinProps.builder()
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSecurityGroupMixinPropsstatic final classAn implementation forCfnSecurityGroupMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the cache security group.- See Also:
-
getTags
A tag that can be added to an ElastiCache security group.Tags are composed of a Key/Value pair. You can use tags to categorize and track all your security groups. A tag with a null Value is permitted.
- See Also:
-
builder
- Returns:
- a
CfnSecurityGroupMixinProps.BuilderofCfnSecurityGroupMixinProps
-