Interface CfnTaskPropsMixin.DestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTaskPropsMixin.DestinationProperty.Jsii$Proxy
- Enclosing class:
CfnTaskPropsMixin
@Stability(Stable)
public static interface CfnTaskPropsMixin.DestinationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies where DataSync uploads your task report.
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.datasync.*;
DestinationProperty destinationProperty = DestinationProperty.builder()
.s3(S3Property.builder()
.bucketAccessRoleArn("bucketAccessRoleArn")
.s3BucketArn("s3BucketArn")
.subdirectory("subdirectory")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTaskPropsMixin.DestinationPropertystatic final classAn implementation forCfnTaskPropsMixin.DestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3
Specifies the Amazon S3 bucket where DataSync uploads your task report.Returns union: either
IResolvableorCfnTaskPropsMixin.S3Property- See Also:
-
builder
-