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();
 
  • Method Details

    • getAclName

      @Stability(Stable) @NotNull String getAclName()
      The name of the Access Control List.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • getUserNames

      @Stability(Stable) @Nullable default List<String> getUserNames()
      The list of users that belong to the Access Control List.
    • builder

      @Stability(Stable) static CfnACLProps.Builder builder()
      Returns:
      a CfnACLProps.Builder of CfnACLProps