Interface CfnMigrationProject.DataProviderDescriptorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMigrationProject.DataProviderDescriptorProperty.Jsii$Proxy
- Enclosing class:
CfnMigrationProject
@Stability(Stable)
public static interface CfnMigrationProject.DataProviderDescriptorProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dms.*; DataProviderDescriptorProperty dataProviderDescriptorProperty = DataProviderDescriptorProperty.builder() .dataProviderArn("dataProviderArn") .dataProviderIdentifier("dataProviderIdentifier") .dataProviderName("dataProviderName") .secretsManagerAccessRoleArn("secretsManagerAccessRoleArn") .secretsManagerSecretId("secretsManagerSecretId") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMigrationProject.DataProviderDescriptorProperty
static final class
An implementation forCfnMigrationProject.DataProviderDescriptorProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The Amazon Resource Name (ARN) of the data provider.default String
default String
The user-friendly name of the data provider.default String
The ARN of the role used to access AWS Secrets Manager.default String
The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataProviderArn
The Amazon Resource Name (ARN) of the data provider.- See Also:
-
getDataProviderIdentifier
- See Also:
-
getDataProviderName
The user-friendly name of the data provider.- See Also:
-
getSecretsManagerAccessRoleArn
The ARN of the role used to access AWS Secrets Manager.- See Also:
-
getSecretsManagerSecretId
The identifier of the AWS Secrets Manager Secret used to store access credentials for the data provider.- See Also:
-
builder
-