Show / Hide Table of Contents

Class CfnPublicKey.PublicKeyConfigProperty

Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .

Inheritance
object
CfnPublicKey.PublicKeyConfigProperty
Implements
CfnPublicKey.IPublicKeyConfigProperty
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.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPublicKey.PublicKeyConfigProperty : CfnPublicKey.IPublicKeyConfigProperty
Syntax (vb)
Public Class CfnPublicKey.PublicKeyConfigProperty Implements CfnPublicKey.IPublicKeyConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.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.CloudFront;

             var publicKeyConfigProperty = new PublicKeyConfigProperty {
                 CallerReference = "callerReference",
                 EncodedKey = "encodedKey",
                 Name = "name",

                 // the properties below are optional
                 Comment = "comment"
             };

Synopsis

Constructors

PublicKeyConfigProperty()

Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .

Properties

CallerReference

A string included in the request to help make sure that the request can't be replayed.

Comment

A comment to describe the public key.

EncodedKey

The public key that you can use with signed URLs and signed cookies , or with field-level encryption .

Name

A name to help identify the public key.

Constructors

PublicKeyConfigProperty()

Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .

public PublicKeyConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.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.CloudFront;

             var publicKeyConfigProperty = new PublicKeyConfigProperty {
                 CallerReference = "callerReference",
                 EncodedKey = "encodedKey",
                 Name = "name",

                 // the properties below are optional
                 Comment = "comment"
             };

Properties

CallerReference

A string included in the request to help make sure that the request can't be replayed.

public string CallerReference { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html#cfn-cloudfront-publickey-publickeyconfig-callerreference

Comment

A comment to describe the public key.

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

string

Remarks

The comment cannot be longer than 128 characters.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html#cfn-cloudfront-publickey-publickeyconfig-comment

EncodedKey

The public key that you can use with signed URLs and signed cookies , or with field-level encryption .

public string EncodedKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html#cfn-cloudfront-publickey-publickeyconfig-encodedkey

Name

A name to help identify the public key.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-publickey-publickeyconfig.html#cfn-cloudfront-publickey-publickeyconfig-name

Implements

CfnPublicKey.IPublicKeyConfigProperty
Back to top Generated by DocFX