interface CmkSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataSync.CfnLocationFSxWindowsPropsMixin.CmkSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatasync#CfnLocationFSxWindowsPropsMixin_CmkSecretConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datasync.CfnLocationFSxWindowsPropsMixin.CmkSecretConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_datasync.CfnLocationFSxWindowsPropsMixin.CmkSecretConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datasync » CfnLocationFSxWindowsPropsMixin » CmkSecretConfigProperty |
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, and a customer-managed AWS KMS key.
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 cmkSecretConfigProperty: datasync.CfnLocationFSxWindowsPropsMixin.CmkSecretConfigProperty = {
kmsKeyArn: 'kmsKeyArn',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn. |
| secret | string | Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync. |
kmsKeyArn?
Type:
string
(optional)
Specifies the ARN for the customer-managed AWS KMS key used to encrypt the secret specified for SecretArn.
DataSync provides this key to AWS Secrets Manager.
secretArn?
Type:
string
(optional)
Specifies the ARN for an AWS Secrets Manager secret, managed by DataSync.

.NET
Go
Java
Python
TypeScript