interface DynamoDbSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DMS.CfnEndpoint.DynamoDbSettingsProperty |
Java | software.amazon.awscdk.services.dms.CfnEndpoint.DynamoDbSettingsProperty |
Python | aws_cdk.aws_dms.CfnEndpoint.DynamoDbSettingsProperty |
TypeScript | @aws-cdk/aws-dms » CfnEndpoint » DynamoDbSettingsProperty |
Provides information, including the Amazon Resource Name (ARN) of the IAM role used to define an Amazon DynamoDB target endpoint.
This information also includes the output format of records applied to the endpoint and details of transaction and control table data information. For information about other available settings, see Using object mapping to migrate data to DynamoDB in the AWS Database Migration Service User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as dms from '@aws-cdk/aws-dms';
const dynamoDbSettingsProperty: dms.CfnEndpoint.DynamoDbSettingsProperty = {
serviceAccessRoleArn: 'serviceAccessRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | string | The Amazon Resource Name (ARN) used by the service to access the IAM role. |
serviceAccessRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) used by the service to access the IAM role.
The role must allow the iam:PassRole action.

.NET
Java
Python
TypeScript