Class CfnPublicKey.PublicKeyConfigProperty
Configuration information about a public key that you can use with signed URLs and signed cookies , or with field-level encryption .
Implements
Inherited Members
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
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
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
Remarks
Comment
A comment to describe the public key.
public string? Comment { get; set; }
Property Value
Remarks
The comment cannot be longer than 128 characters.
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
Remarks
Name
A name to help identify the public key.
public string Name { get; set; }