package awsappconfig // Properties for defining a `CfnApplication`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnApplicationProps := &CfnApplicationProps{ // Name: jsii.String("name"), // // // the properties below are optional // Description: jsii.String("description"), // Tags: []tagsProperty{ // &tagsProperty{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html // type CfnApplicationProps struct { // A name for the application. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-name // Name *string `field:"required" json:"name" yaml:"name"` // A description of the application. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-description // Description *string `field:"optional" json:"description" yaml:"description"` // Metadata to assign to the application. // // Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html#cfn-appconfig-application-tags // Tags *[]*CfnApplication_TagsProperty `field:"optional" json:"tags" yaml:"tags"` }