interface ManagedSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataSync.Mixins.CfnLocationAzureBlobPropsMixin.ManagedSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatasync/mixins#CfnLocationAzureBlobPropsMixin_ManagedSecretConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.datasync.mixins.CfnLocationAzureBlobPropsMixin.ManagedSecretConfigProperty |
Python | aws_cdk.mixins_preview.aws_datasync.mixins.CfnLocationAzureBlobPropsMixin.ManagedSecretConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datasync » mixins » CfnLocationAzureBlobPropsMixin » 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 { mixins as datasync_mixins } from '@aws-cdk/mixins-preview/aws-datasync';
const managedSecretConfigProperty: datasync_mixins.CfnLocationAzureBlobPropsMixin.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