@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.827Z") @Stability(value=Stable) public interface CfnAssistantProps 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.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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAssistantProps.Builder
A builder for
CfnAssistantProps |
static class |
CfnAssistantProps.Jsii$Proxy
An implementation for
CfnAssistantProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAssistantProps.Builder |
builder() |
default String |
getDescription()
The description of the assistant.
|
String |
getName()
The name of the assistant.
|
default Object |
getServerSideEncryptionConfiguration()
The KMS key used for encryption.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
String |
getType()
The type of assistant.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getServerSideEncryptionConfiguration()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnAssistantProps.Builder builder()
CfnAssistantProps.Builder of CfnAssistantPropsCopyright © 2022. All rights reserved.