@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.010Z") @Stability(value=Stable) public interface CfnSecurityGroupProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnSecurityGroupProps cfnSecurityGroupProps = CfnSecurityGroupProps.builder()
.description("description")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSecurityGroupProps.Builder
A builder for
CfnSecurityGroupProps |
static class |
CfnSecurityGroupProps.Jsii$Proxy
An implementation for
CfnSecurityGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSecurityGroupProps.Builder |
builder() |
String |
getDescription()
A description for the cache security group.
|
default List<CfnTag> |
getTags()
A tag that can be added to an ElastiCache security group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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.
@Stability(value=Stable) static CfnSecurityGroupProps.Builder builder()
CfnSecurityGroupProps.Builder of CfnSecurityGroupPropsCopyright © 2022. All rights reserved.