Interface CfnNetworkMigrationDefinition.SourceS3ConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnNetworkMigrationDefinition.SourceS3ConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnNetworkMigrationDefinition
@Stability(Stable)
public static interface CfnNetworkMigrationDefinition.SourceS3ConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
S3 configuration for source network data.
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.mgn.*;
SourceS3ConfigurationProperty sourceS3ConfigurationProperty = SourceS3ConfigurationProperty.builder()
.s3Bucket("s3Bucket")
.s3BucketOwner("s3BucketOwner")
.s3Key("s3Key")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnNetworkMigrationDefinition.SourceS3ConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The name of the S3 bucket containing source data.- See Also:
-
getS3BucketOwner
The AWS account ID of the S3 bucket owner.- See Also:
-
getS3Key
The S3 key (path) for the source data.- See Also:
-
builder
@Stability(Stable) static CfnNetworkMigrationDefinition.SourceS3ConfigurationProperty.Builder builder()
-