Interface CfnDataDeletionJobProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataDeletionJobProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-08-13T16:20:10.622Z")
@Stability(Stable)
public interface CfnDataDeletionJobProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataDeletionJob.
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.personalize.*;
CfnDataDeletionJobProps cfnDataDeletionJobProps = CfnDataDeletionJobProps.builder()
.datasetGroupArn("datasetGroupArn")
.dataSource(DataSourceProperty.builder()
.dataLocation("dataLocation")
.build())
.jobName("jobName")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataDeletionJobPropsstatic final classAn implementation forCfnDataDeletionJobProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from.default ObjectThe Amazon S3 bucket that contains the list of userIds to delete.default StringThe name for the data deletion job.default StringThe Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetGroupArn
The Amazon Resource Name (ARN) of the dataset group that has the datasets you want to delete records from.- See Also:
-
getDataSource
The Amazon S3 bucket that contains the list of userIds to delete.Returns union: either
IResolvableorCfnDataDeletionJob.DataSourceProperty- See Also:
-
getJobName
The name for the data deletion job.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of the IAM role that has permissions to read from the Amazon S3 data source.- See Also:
-
builder
- Returns:
- a
CfnDataDeletionJobProps.BuilderofCfnDataDeletionJobProps
-