interface ManagedSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataSync.CfnLocationSMBPropsMixin.ManagedSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatasync#CfnLocationSMBPropsMixin_ManagedSecretConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datasync.CfnLocationSMBPropsMixin.ManagedSecretConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_datasync.CfnLocationSMBPropsMixin.ManagedSecretConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datasync » CfnLocationSMBPropsMixin » 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/cfn-property-mixins';
const managedSecretConfigProperty: datasync.CfnLocationSMBPropsMixin.ManagedSecretConfigProperty = {
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| secret | string | Specifies the ARN for an AWS Secrets Manager secret. |
secretArn?
Type:
string
(optional)
Specifies the ARN for an AWS Secrets Manager secret.

.NET
Go
Java
Python
TypeScript