interface CustomSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataSync.CfnLocationFSxWindowsPropsMixin.CustomSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatasync#CfnLocationFSxWindowsPropsMixin_CustomSecretConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datasync.CfnLocationFSxWindowsPropsMixin.CustomSecretConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_datasync.CfnLocationFSxWindowsPropsMixin.CustomSecretConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datasync » CfnLocationFSxWindowsPropsMixin » 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 { aws_datasync as datasync } from '@aws-cdk/cfn-property-mixins';
const customSecretConfigProperty: datasync.CfnLocationFSxWindowsPropsMixin.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