interface CmkSecretConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataSync.CfnLocationFSxONTAP.CmkSecretConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationFSxONTAP_CmkSecretConfigProperty |
Java | software.amazon.awscdk.services.datasync.CfnLocationFSxONTAP.CmkSecretConfigProperty |
Python | aws_cdk.aws_datasync.CfnLocationFSxONTAP.CmkSecretConfigProperty |
TypeScript | aws-cdk-lib » aws_datasync » CfnLocationFSxONTAP » 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-lib';
const cmkSecretConfigProperty: datasync.CfnLocationFSxONTAP.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