Class CfnPublicKeyProps
Properties for defining a CfnPublicKey
.
Inheritance
System.Object
CfnPublicKeyProps
Implements
Namespace: Amazon.CDK.AWS.Ivs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPublicKeyProps : Object, ICfnPublicKeyProps
Syntax (vb)
Public Class CfnPublicKeyProps
Inherits Object
Implements ICfnPublicKeyProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Ivs;
var cfnPublicKeyProps = new CfnPublicKeyProps {
Name = "name",
PublicKeyMaterial = "publicKeyMaterial",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnPublicKeyProps() |
Properties
Name | Public key name. |
PublicKeyMaterial | The public portion of a customer-generated key pair. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnPublicKeyProps()
public CfnPublicKeyProps()
Properties
Name
Public key name.
public string Name { get; set; }
Property Value
System.String
Remarks
The value does not need to be unique.
PublicKeyMaterial
The public portion of a customer-generated key pair.
public string PublicKeyMaterial { get; set; }
Property Value
System.String
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]