interface DataProviderDescriptorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DMS.Mixins.CfnMigrationProjectPropsMixin.DataProviderDescriptorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdms/mixins#CfnMigrationProjectPropsMixin_DataProviderDescriptorProperty |
Java | software.amazon.awscdk.mixins.preview.services.dms.mixins.CfnMigrationProjectPropsMixin.DataProviderDescriptorProperty |
Python | aws_cdk.mixins_preview.aws_dms.mixins.CfnMigrationProjectPropsMixin.DataProviderDescriptorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dms » mixins » CfnMigrationProjectPropsMixin » DataProviderDescriptorProperty |
Information about a data provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as dms_mixins } from '@aws-cdk/mixins-preview/aws-dms';
const dataProviderDescriptorProperty: dms_mixins.CfnMigrationProjectPropsMixin.DataProviderDescriptorProperty = {
dataProviderArn: 'dataProviderArn',
dataProviderIdentifier: 'dataProviderIdentifier',
dataProviderName: 'dataProviderName',
secretsManagerAccessRoleArn: 'secretsManagerAccessRoleArn',
secretsManagerSecretId: 'secretsManagerSecretId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) of the data provider. |
| data | string | |
| data | string | The user-friendly name of the data provider. |
| secrets | string | The ARN of the role used to access AWS Secrets Manager. |
| secrets | string | The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider. |
dataProviderArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the data provider.
dataProviderIdentifier?
Type:
string
(optional)
dataProviderName?
Type:
string
(optional)
The user-friendly name of the data provider.
secretsManagerAccessRoleArn?
Type:
string
(optional)
The ARN of the role used to access AWS Secrets Manager.
secretsManagerSecretId?
Type:
string
(optional)
The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider.

.NET
Go
Java
Python
TypeScript