interface CfnBatchScramSecretMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnBatchScramSecretMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnBatchScramSecretMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnBatchScramSecretMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnBatchScramSecretMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnBatchScramSecretMixinProps |
Properties for CfnBatchScramSecretPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-batchscramsecret.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const cfnBatchScramSecretMixinProps: msk.CfnBatchScramSecretMixinProps = {
clusterArn: 'clusterArn',
secretArnList: ['secretArnList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The Amazon Resource Name (ARN) that uniquely identifies the cluster. |
| secret | string[] | List of Amazon Resource Name (ARN)s of Secrets Manager secrets. |
clusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
secretArnList?
Type:
string[]
(optional)
List of Amazon Resource Name (ARN)s of Secrets Manager secrets.

.NET
Go
Java
Python
TypeScript