Show / Hide Table of Contents

Class CfnPublicKeyProps

Properties for defining a CfnPublicKey.

Inheritance
object
CfnPublicKeyProps
Implements
ICfnPublicKeyProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Ivs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPublicKeyProps : ICfnPublicKeyProps
Syntax (vb)
Public Class CfnPublicKeyProps 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 for defining a CfnPublicKey.

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()

Properties for defining a CfnPublicKey.

public CfnPublicKeyProps()
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"
                 } }
             };

Properties

Name

Public key name.

public string? Name { get; set; }
Property Value

string

Remarks

The value does not need to be unique.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#cfn-ivs-publickey-name

PublicKeyMaterial

The public portion of a customer-generated key pair.

public string? PublicKeyMaterial { get; set; }
Property Value

string

Remarks

Note that this field is required to create the AWS::IVS::PublicKey resource.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#cfn-ivs-publickey-publickeymaterial

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#cfn-ivs-publickey-tags

Implements

ICfnPublicKeyProps
Back to top Generated by DocFX