interface CmkSecretConfigProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.DataSync.CfnLocationAzureBlob.CmkSecretConfigProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationAzureBlob_CmkSecretConfigProperty |
![]() | software.amazon.awscdk.services.datasync.CfnLocationAzureBlob.CmkSecretConfigProperty |
![]() | aws_cdk.aws_datasync.CfnLocationAzureBlob.CmkSecretConfigProperty |
![]() | aws-cdk-lib » aws_datasync » CfnLocationAzureBlob » CmkSecretConfigProperty |
Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .
You can use either
CmkSecretConfig
orCustomSecretConfig
to provide credentials for aCreateLocation
request. Do not provide both parameters for the same request.
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.CfnLocationAzureBlob.CmkSecretConfigProperty = {
kmsKeyArn: 'kmsKeyArn',
secretArn: 'secretArn',
};
Properties
Name | Type | Description |
---|---|---|
kms | string | Specifies the ARN for the customer-managed AWS KMS key that DataSync uses to encrypt the DataSync-managed secret stored for SecretArn . |
secret | string | Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location. |
kmsKeyArn?
Type:
string
(optional)
Specifies the ARN for the customer-managed AWS KMS key that DataSync uses to encrypt the DataSync-managed secret stored for SecretArn
.
DataSync provides this key to AWS Secrets Manager .
secretArn?
Type:
string
(optional)
Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location.
This property is generated by DataSync and is read-only. DataSync encrypts this secret with the KMS key that you specify for KmsKeyArn
.