Interface CfnKeyGroup.IKeyGroupConfigProperty
A key group configuration.
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IKeyGroupConfigProperty
Syntax (vb)
Public Interface IKeyGroupConfigProperty
Remarks
A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies .
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 keyGroupConfigProperty = new KeyGroupConfigProperty {
Items = new [] { "items" },
Name = "name",
// the properties below are optional
Comment = "comment"
};
Synopsis
Properties
Comment | A comment to describe the key group. |
Items | A list of the identifiers of the public keys in the key group. |
Name | A name to identify the key group. |
Properties
Comment
A comment to describe the key group.
virtual string Comment { get; }
Property Value
System.
Remarks
The comment cannot be longer than 128 characters.
Items
A list of the identifiers of the public keys in the key group.
string[] Items { get; }
Property Value
System.
Remarks
Name
A name to identify the key group.
string Name { get; }
Property Value
System.