Show / Hide Table of Contents

Class CfnAnycastIpList.TagsProperty

A complex type that contains zero or more Tag elements.

Inheritance
object
CfnAnycastIpList.TagsProperty
Implements
CfnAnycastIpList.ITagsProperty
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 CfnAnycastIpList.TagsProperty : CfnAnycastIpList.ITagsProperty
Syntax (vb)
Public Class CfnAnycastIpList.TagsProperty Implements CfnAnycastIpList.ITagsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tags.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 tagsProperty = new TagsProperty {
                 Items = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

TagsProperty()

A complex type that contains zero or more Tag elements.

Properties

Items

A complex type that contains Tag elements.

Constructors

TagsProperty()

A complex type that contains zero or more Tag elements.

public TagsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tags.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 tagsProperty = new TagsProperty {
                 Items = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Items

A complex type that contains Tag elements.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-tags.html#cfn-cloudfront-anycastiplist-tags-items

Type union: either IResolvable or (either IResolvable or ICfnTag)[]

Implements

CfnAnycastIpList.ITagsProperty
Back to top Generated by DocFX