@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)", date="2023-04-20T17:18:02.049Z") @Stability(value=Stable) public interface CfnACLProps 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.memorydb.*;
CfnACLProps cfnACLProps = CfnACLProps.builder()
.aclName("aclName")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.userNames(List.of("userNames"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnACLProps.Builder
A builder for
CfnACLProps |
static class |
CfnACLProps.Jsii$Proxy
An implementation for
CfnACLProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnACLProps.Builder |
builder() |
String |
getAclName()
The name of the Access Control List.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
default List<String> |
getUserNames()
The list of users that belong to the Access Control List.
|
@Stability(value=Stable) @NotNull String getAclName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) @Nullable default List<String> getUserNames()
@Stability(value=Stable) static CfnACLProps.Builder builder()
CfnACLProps.Builder of CfnACLPropsCopyright © 2023. All rights reserved.