Show / Hide Table of Contents

Class CfnKeyValueStoreMixinProps

Properties for CfnKeyValueStorePropsMixin.

Inheritance
object
CfnKeyValueStoreMixinProps
Implements
ICfnKeyValueStoreMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CloudFront
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnKeyValueStoreMixinProps : ICfnKeyValueStoreMixinProps
Syntax (vb)
Public Class CfnKeyValueStoreMixinProps Implements ICfnKeyValueStoreMixinProps
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.CfnPropertyMixins.AWS.CloudFront;

             var cfnKeyValueStoreMixinProps = new CfnKeyValueStoreMixinProps {
                 Comment = "comment",
                 ImportSource = new ImportSourceProperty {
                     SourceArn = "sourceArn",
                     SourceType = "sourceType"
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnKeyValueStoreMixinProps()

Properties for CfnKeyValueStorePropsMixin.

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.

Tags

A complex type that contains zero or more Tag elements.

Constructors

CfnKeyValueStoreMixinProps()

Properties for CfnKeyValueStorePropsMixin.

public CfnKeyValueStoreMixinProps()
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.CfnPropertyMixins.AWS.CloudFront;

             var cfnKeyValueStoreMixinProps = new CfnKeyValueStoreMixinProps {
                 Comment = "comment",
                 ImportSource = new ImportSourceProperty {
                     SourceArn = "sourceArn",
                     SourceType = "sourceType"
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

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 CfnKeyValueStorePropsMixin.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

Tags

A complex type that contains zero or more Tag elements.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnKeyValueStoreMixinProps
Back to top Generated by DocFX