Show / Hide Table of Contents

Class CfnAttributeGroupProps

Properties for defining a CfnAttributeGroup.

Inheritance
object
CfnAttributeGroupProps
Implements
ICfnAttributeGroupProps
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.Servicecatalogappregistry
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAttributeGroupProps : ICfnAttributeGroupProps
Syntax (vb)
Public Class CfnAttributeGroupProps Implements ICfnAttributeGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.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.Servicecatalogappregistry;

             var attributes;

             var cfnAttributeGroupProps = new CfnAttributeGroupProps {
                 Attributes = attributes,
                 Name = "name",

                 // the properties below are optional
                 Description = "description",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Constructors

CfnAttributeGroupProps()

Properties for defining a CfnAttributeGroup.

Properties

Attributes

A nested object in a JSON or YAML template that supports arbitrary definitions.

Description

The description of the attribute group that the user provides.

Name

The name of the attribute group.

Tags

Key-value pairs you can use to associate with the attribute group.

Constructors

CfnAttributeGroupProps()

Properties for defining a CfnAttributeGroup.

public CfnAttributeGroupProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.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.Servicecatalogappregistry;

             var attributes;

             var cfnAttributeGroupProps = new CfnAttributeGroupProps {
                 Attributes = attributes,
                 Name = "name",

                 // the properties below are optional
                 Description = "description",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Properties

Attributes

A nested object in a JSON or YAML template that supports arbitrary definitions.

public object Attributes { get; set; }
Property Value

object

Remarks

Represents the attributes in an attribute group that describes an application and its components.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-attributes

Description

The description of the attribute group that the user provides.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-description

Name

The name of the attribute group.

public string Name { get; set; }
Property Value

string

Remarks

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

Tags

Key-value pairs you can use to associate with the attribute group.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

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

Implements

ICfnAttributeGroupProps
Back to top Generated by DocFX