Interface CfnNamespace.NamespaceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNamespace.NamespaceProperty.Jsii$Proxy
Enclosing class:
CfnNamespace

@Stability(Stable) public static interface CfnNamespace.NamespaceProperty extends software.amazon.jsii.JsiiSerializable
A collection of database objects and users.

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.redshiftserverless.*;
 NamespaceProperty namespaceProperty = NamespaceProperty.builder()
         .adminPasswordSecretArn("adminPasswordSecretArn")
         .adminPasswordSecretKmsKeyId("adminPasswordSecretKmsKeyId")
         .adminUsername("adminUsername")
         .creationDate("creationDate")
         .dbName("dbName")
         .defaultIamRoleArn("defaultIamRoleArn")
         .iamRoles(List.of("iamRoles"))
         .kmsKeyId("kmsKeyId")
         .logExports(List.of("logExports"))
         .namespaceArn("namespaceArn")
         .namespaceId("namespaceId")
         .namespaceName("namespaceName")
         .status("status")
         .build();
 

See Also: