Interface CfnAssistantProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssistantProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.639Z") @Stability(Stable) public interface CfnAssistantProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAssistant.

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.wisdom.*;
 CfnAssistantProps cfnAssistantProps = CfnAssistantProps.builder()
         .name("name")
         .type("type")
         // the properties below are optional
         .description("description")
         .serverSideEncryptionConfiguration(ServerSideEncryptionConfigurationProperty.builder()
                 .kmsKeyId("kmsKeyId")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the assistant.
    • getType

      @Stability(Stable) @NotNull String getType()
      The type of assistant.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the assistant.
    • getServerSideEncryptionConfiguration

      @Stability(Stable) @Nullable default Object getServerSideEncryptionConfiguration()
      The KMS key used for encryption.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags used to organize, track, or control access for this resource.
    • builder

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