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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMigrationProject.DataProviderDescriptorPropertystatic final classAn implementation forCfnMigrationProject.DataProviderDescriptorProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the data provider.default Stringdefault StringThe user-friendly name of the data provider.default StringThe ARN of the role used to access AWS Secrets Manager.default StringThe 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
-