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: