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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnParallelDataPropsstatic final classAn implementation forCfnParallelDataProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnParallelDataProps.Builderbuilder()default StringA custom description for the parallel data resource.default ObjectThe encryption key used to encrypt this object.getName()A custom name for the parallel data resource.Specifies the format and S3 location of the parallel data input file.default List<CfnParallelData.TagsItemsProperty> getTags()Tags associated with the parallel data resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
A custom name for the parallel data resource.Must be unique in the account and region.
- See Also:
-
getParallelDataConfig
Specifies the format and S3 location of the parallel data input file.Returns union: either
IResolvableorCfnParallelData.ParallelDataConfigProperty- See Also:
-
getDescription
A custom description for the parallel data resource.- See Also:
-
getEncryptionKey
The encryption key used to encrypt this object.Returns union: either
IResolvableorCfnParallelData.EncryptionKeyProperty- See Also:
-
getTags
Tags associated with the parallel data resource.- See Also:
-
builder
- Returns:
- a
CfnParallelDataProps.BuilderofCfnParallelDataProps
-