package awsworkspaces import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnConnectionAlias`. // // 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" // // cfnConnectionAliasProps := &CfnConnectionAliasProps{ // ConnectionString: jsii.String("connectionString"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html // type CfnConnectionAliasProps struct { // The connection string specified for the connection alias. // // The connection string must be in the form of a fully qualified domain name (FQDN), such as `www.example.com` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html#cfn-workspaces-connectionalias-connectionstring // ConnectionString *string `field:"required" json:"connectionString" yaml:"connectionString"` // The tags to associate with the connection alias. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html#cfn-workspaces-connectionalias-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }