interface CfnPublicKeyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnPublicKeyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnPublicKeyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnPublicKeyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnPublicKeyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » 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 { aws_ivs as ivs } from '@aws-cdk/cfn-property-mixins';
const cfnPublicKeyMixinProps: ivs.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