Class KeyValueStoreReference
A reference to a KeyValueStore resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class KeyValueStoreReference : IKeyValueStoreReference
Syntax (vb)
Public Class KeyValueStoreReference Implements IKeyValueStoreReference
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.Interfaces.CloudFront;
var keyValueStoreReference = new KeyValueStoreReference {
KeyValueStoreArn = "keyValueStoreArn",
KeyValueStoreName = "keyValueStoreName"
};
Synopsis
Constructors
| KeyValueStoreReference() | A reference to a KeyValueStore resource. |
Properties
| KeyValueStoreArn | The ARN of the KeyValueStore resource. |
| KeyValueStoreName | The Name of the KeyValueStore resource. |
Constructors
KeyValueStoreReference()
A reference to a KeyValueStore resource.
public KeyValueStoreReference()
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.Interfaces.CloudFront;
var keyValueStoreReference = new KeyValueStoreReference {
KeyValueStoreArn = "keyValueStoreArn",
KeyValueStoreName = "keyValueStoreName"
};
Properties
KeyValueStoreArn
The ARN of the KeyValueStore resource.
public string KeyValueStoreArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
KeyValueStoreName
The Name of the KeyValueStore resource.
public string KeyValueStoreName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated