interface KmsAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnOdbNetworkPropsMixin.KmsAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnOdbNetworkPropsMixin_KmsAccessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnOdbNetworkPropsMixin.KmsAccessProperty |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnOdbNetworkPropsMixin.KmsAccessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » CfnOdbNetworkPropsMixin » KmsAccessProperty |
The AWS Key Management Service (KMS) access configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from '@aws-cdk/cfn-property-mixins';
const kmsAccessProperty: odb.CfnOdbNetworkPropsMixin.KmsAccessProperty = {
domainName: 'domainName',
ipv4Addresses: ['ipv4Addresses'],
kmsPolicyDocument: 'kmsPolicyDocument',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain name for the AWS KMS access. |
| ipv4 | string[] | The IPv4 addresses for the AWS KMS access. |
| kms | string | The endpoint policy for the AWS KMS access. |
| status? | string | The status of the managed resource access. |
domainName?
Type:
string
(optional)
The domain name for the AWS KMS access.
ipv4Addresses?
Type:
string[]
(optional)
The IPv4 addresses for the AWS KMS access.
kmsPolicyDocument?
Type:
string
(optional)
The endpoint policy for the AWS KMS access.
status?
Type:
string
(optional)
The status of the managed resource access.

.NET
Go
Java
Python
TypeScript