Interface CfnACLProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnACLProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.365Z")
@Stability(Stable)
public interface CfnACLProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnACL
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnACLProps
static final class
An implementation forCfnACLProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnACLProps.Builder
builder()
The name of the Access Control List.getTags()
An array of key-value pairs to apply to this resource.The list of users that belong to the Access Control List.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAclName
The name of the Access Control List. -
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
getUserNames
The list of users that belong to the Access Control List. -
builder
- Returns:
- a
CfnACLProps.Builder
ofCfnACLProps
-