interface CfnPublicKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Mixins.CfnPublicKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/mixins#CfnPublicKeyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.mixins.CfnPublicKeyMixinProps |
Python | aws_cdk.mixins_preview.aws_ivs.mixins.CfnPublicKeyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ivs » mixins » CfnPublicKeyMixinProps |
Properties for CfnPublicKeyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ivs_mixins } from '@aws-cdk/mixins-preview/aws-ivs';
const cfnPublicKeyMixinProps: ivs_mixins.CfnPublicKeyMixinProps = {
name: 'name',
publicKeyMaterial: 'publicKeyMaterial',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Public key name. |
| public | string | The public portion of a customer-generated key pair. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name?
Type:
string
(optional)
Public key name.
The value does not need to be unique.
publicKeyMaterial?
Type:
string
(optional)
The public portion of a customer-generated key pair.
Note that this field is required to create the AWS::IVS::PublicKey resource.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript