Class CfnMigrationProject.DataProviderDescriptorProperty
Information about a data provider.
Inherited Members
Namespace: Amazon.CDK.AWS.DMS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMigrationProject.DataProviderDescriptorProperty : CfnMigrationProject.IDataProviderDescriptorProperty
Syntax (vb)
Public Class CfnMigrationProject.DataProviderDescriptorProperty Implements CfnMigrationProject.IDataProviderDescriptorProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DMS;
var dataProviderDescriptorProperty = new DataProviderDescriptorProperty {
DataProviderArn = "dataProviderArn",
DataProviderIdentifier = "dataProviderIdentifier",
DataProviderName = "dataProviderName",
SecretsManagerAccessRoleArn = "secretsManagerAccessRoleArn",
SecretsManagerSecretId = "secretsManagerSecretId"
};
Synopsis
Constructors
| DataProviderDescriptorProperty() | Information about a data provider. |
Properties
| DataProviderArn | The Amazon Resource Name (ARN) of the data provider. |
| DataProviderIdentifier | Information about a data provider. |
| DataProviderName | The user-friendly name of the data provider. |
| SecretsManagerAccessRoleArn | The ARN of the role used to access AWS Secrets Manager. |
| SecretsManagerSecretId | The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider. |
Constructors
DataProviderDescriptorProperty()
Information about a data provider.
public DataProviderDescriptorProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.DMS;
var dataProviderDescriptorProperty = new DataProviderDescriptorProperty {
DataProviderArn = "dataProviderArn",
DataProviderIdentifier = "dataProviderIdentifier",
DataProviderName = "dataProviderName",
SecretsManagerAccessRoleArn = "secretsManagerAccessRoleArn",
SecretsManagerSecretId = "secretsManagerSecretId"
};
Properties
DataProviderArn
The Amazon Resource Name (ARN) of the data provider.
public string? DataProviderArn { get; set; }
Property Value
Remarks
DataProviderIdentifier
Information about a data provider.
public string? DataProviderIdentifier { get; set; }
Property Value
Remarks
DataProviderName
The user-friendly name of the data provider.
public string? DataProviderName { get; set; }
Property Value
Remarks
SecretsManagerAccessRoleArn
The ARN of the role used to access AWS Secrets Manager.
public string? SecretsManagerAccessRoleArn { get; set; }
Property Value
Remarks
SecretsManagerSecretId
The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider.
public string? SecretsManagerSecretId { get; set; }