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