Class CfnAnycastIpList.TagsProperty
A complex type that contains zero or more Tag elements.
Implements
Inherited Members
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
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 |
Properties
| Items | A complex type that contains |
Constructors
TagsProperty()
A complex type that contains zero or more Tag elements.
public TagsProperty()
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.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; }