interface SourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MGN.CfnNetworkMigrationDefinition.SourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmgn#CfnNetworkMigrationDefinition_SourceConfigurationProperty |
Java | software.amazon.awscdk.services.mgn.CfnNetworkMigrationDefinition.SourceConfigurationProperty |
Python | aws_cdk.aws_mgn.CfnNetworkMigrationDefinition.SourceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mgn » CfnNetworkMigrationDefinition » SourceConfigurationProperty |
Configuration for a migration source environment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mgn as mgn } from 'aws-cdk-lib';
const sourceConfigurationProperty: mgn.CfnNetworkMigrationDefinition.SourceConfigurationProperty = {
sourceEnvironment: 'sourceEnvironment',
sourceS3Configuration: {
s3Bucket: 's3Bucket',
s3BucketOwner: 's3BucketOwner',
s3Key: 's3Key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The source environment type. |
| source | IResolvable | Source | S3 configuration for source network data. |
sourceEnvironment
Type:
string
The source environment type.
sourceS3Configuration
Type:
IResolvable | Source
S3 configuration for source network data.

.NET
Go
Java
Python
TypeScript