Interface CfnParallelDataMixinProps

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:35.079Z") @Stability(Stable) public interface CfnParallelDataMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnParallelDataPropsMixin.

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.translate.*;
 CfnParallelDataMixinProps cfnParallelDataMixinProps = CfnParallelDataMixinProps.builder()
         .description("description")
         .encryptionKey(EncryptionKeyProperty.builder()
                 .id("id")
                 .type("type")
                 .build())
         .name("name")
         .parallelDataConfig(ParallelDataConfigProperty.builder()
                 .format("format")
                 .s3Uri("s3Uri")
                 .build())
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: