Show / Hide Table of Contents

Class KeyValueStoreReference

A reference to a KeyValueStore resource.

Inheritance
object
KeyValueStoreReference
Implements
IKeyValueStoreReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

KeyValueStoreName

The Name of the KeyValueStore resource.

public string KeyValueStoreName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IKeyValueStoreReference
Back to top Generated by DocFX