Interface CfnDatasetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:26.253Z")
@Stability(Stable)
public interface CfnDatasetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDatasetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.scn.*;
CfnDatasetMixinProps cfnDatasetMixinProps = CfnDatasetMixinProps.builder()
.description("description")
.instanceId("instanceId")
.name("name")
.namespace("namespace")
.partitionSpec(PartitionSpecProperty.builder()
.fields(List.of(DataLakeDatasetPartitionFieldProperty.builder()
.name("name")
.transform(TransformProperty.builder()
.type("type")
.build())
.build()))
.build())
.schema(SchemaProperty.builder()
.fields(List.of(DataLakeDatasetSchemaFieldProperty.builder()
.isRequired(false)
.name("name")
.type("type")
.build()))
.name("name")
.primaryKeys(List.of(DataLakeDatasetPrimaryKeyFieldProperty.builder()
.name("name")
.build()))
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetMixinPropsstatic final classAn implementation forCfnDatasetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatasetMixinProps.Builderbuilder()default StringThe description of the dataset.default StringThe Amazon Web Services Supply Chain instance identifier.default StringgetName()The name of the dataset.default StringThe namespace of the dataset.default ObjectThe partition specification of the dataset.default ObjectThe schema of the dataset.getTags()The tags for the dataset.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the dataset.- See Also:
-
getInstanceId
The Amazon Web Services Supply Chain instance identifier.- See Also:
-
getName
The name of the dataset.- See Also:
-
getNamespace
The namespace of the dataset.- See Also:
-
getPartitionSpec
The partition specification of the dataset.Returns union: either
IResolvableorCfnDatasetPropsMixin.PartitionSpecProperty- See Also:
-
getSchema
The schema of the dataset.Returns union: either
IResolvableorCfnDatasetPropsMixin.SchemaProperty- See Also:
-
getTags
The tags for the dataset.- See Also:
-
builder
- Returns:
- a
CfnDatasetMixinProps.BuilderofCfnDatasetMixinProps
-