interface ManagedSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataSync.CfnLocationSMB.ManagedSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationSMB_ManagedSecretConfigProperty |
Java | software.amazon.awscdk.services.datasync.CfnLocationSMB.ManagedSecretConfigProperty |
Python | aws_cdk.aws_datasync.CfnLocationSMB.ManagedSecretConfigProperty |
TypeScript | aws-cdk-lib » aws_datasync » CfnLocationSMB » ManagedSecretConfigProperty |
Specifies configuration information for a DataSync-managed secret, such as an authentication token or set of credentials that DataSync uses to access a specific transfer location.
DataSync uses the default AWS -managed KMS key to encrypt this secret in AWS Secrets Manager .
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-lib';
const managedSecretConfigProperty: datasync.CfnLocationSMB.ManagedSecretConfigProperty = {
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | Specifies the ARN for an AWS Secrets Manager secret. |
secretArn
Type:
string
Specifies the ARN for an AWS Secrets Manager secret.

.NET
Go
Java
Python
TypeScript