Interface CfnParallelDataProps

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

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

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.translate.*;
 CfnParallelDataProps cfnParallelDataProps = CfnParallelDataProps.builder()
         .name("name")
         .parallelDataConfig(ParallelDataConfigProperty.builder()
                 .format("format")
                 .s3Uri("s3Uri")
                 .build())
         // the properties below are optional
         .description("description")
         .encryptionKey(EncryptionKeyProperty.builder()
                 .id("id")
                 .type("type")
                 .build())
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: