Show / Hide Table of Contents

Interface ICfnApplicationProps

Properties for defining a CfnApplication.

Namespace: Amazon.CDK.AWS.Servicecatalogappregistry
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnApplicationProps
Syntax (vb)
Public Interface ICfnApplicationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-application.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 cfnApplicationProps = new CfnApplicationProps {
                 Name = "name",

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

Synopsis

Properties

Description

The description of the application.

Name

The name of the application.

Tags

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

Properties

Description

The description of the application.

string? Description { get; }
Property Value

string

Remarks

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

Name

The name of the application.

string Name { get; }
Property Value

string

Remarks

The name must be unique in the region in which you are creating the application.

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

Tags

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

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

IDictionary<string, string>

Remarks

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

Back to top Generated by DocFX