interface CustomSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationHDFSPropsMixin.CustomSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationHDFSPropsMixin_CustomSecretConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationHDFSPropsMixin.CustomSecretConfigProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationHDFSPropsMixin.CustomSecretConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationHDFSPropsMixin » CustomSecretConfigProperty |
Specifies configuration information for a customer-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location, and an IAM role that DataSync can assume and access the customer-managed secret.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const customSecretConfigProperty: datasync_mixins.CfnLocationHDFSPropsMixin.CustomSecretConfigProperty = {
secretAccessRoleArn: 'secretAccessRoleArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn. |
| secret | string | Specifies the ARN for a customer created AWS Secrets Manager secret. |
secretAccessRoleArn?
Type:
string
(optional)
Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
secretArn?
Type:
string
(optional)
Specifies the ARN for a customer created AWS Secrets Manager secret.

.NET
Go
Java
Python
TypeScript