interface CfnPublicKeyProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Ivs.CfnPublicKeyProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsivs#CfnPublicKeyProps |
Java | software.amazon.awscdk.services.ivs.CfnPublicKeyProps |
Python | aws_cdk.aws_ivs.CfnPublicKeyProps |
TypeScript | aws-cdk-lib » aws_ivs » CfnPublicKeyProps |
Properties for defining a CfnPublicKey
.
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-lib';
const cfnPublicKeyProps: ivs.CfnPublicKeyProps = {
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.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.