Show / Hide Table of Contents

Class CfnKeyValueStoreProps

Properties for defining a CfnKeyValueStore.

Inheritance
object
CfnKeyValueStoreProps
Implements
ICfnKeyValueStoreProps
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 CfnKeyValueStoreProps : ICfnKeyValueStoreProps
Syntax (vb)
Public Class CfnKeyValueStoreProps Implements ICfnKeyValueStoreProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.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 cfnKeyValueStoreProps = new CfnKeyValueStoreProps {
                 Name = "name",

                 // the properties below are optional
                 Comment = "comment",
                 ImportSource = new ImportSourceProperty {
                     SourceArn = "sourceArn",
                     SourceType = "sourceType"
                 }
             };

Synopsis

Constructors

CfnKeyValueStoreProps()

Properties for defining a CfnKeyValueStore.

Properties

Comment

A comment for the key value store.

ImportSource

The import source for the key value store.

Name

The name of the key value store.

Constructors

CfnKeyValueStoreProps()

Properties for defining a CfnKeyValueStore.

public CfnKeyValueStoreProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.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 cfnKeyValueStoreProps = new CfnKeyValueStoreProps {
                 Name = "name",

                 // the properties below are optional
                 Comment = "comment",
                 ImportSource = new ImportSourceProperty {
                     SourceArn = "sourceArn",
                     SourceType = "sourceType"
                 }
             };

Properties

Comment

A comment for the key value store.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.html#cfn-cloudfront-keyvaluestore-comment

ImportSource

The import source for the key value store.

public object? ImportSource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.html#cfn-cloudfront-keyvaluestore-importsource

Type union: either IResolvable or CfnKeyValueStore.IImportSourceProperty

Name

The name of the key value store.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-keyvaluestore.html#cfn-cloudfront-keyvaluestore-name

Implements

ICfnKeyValueStoreProps
Back to top Generated by DocFX