package awscdk // Properties for defining a `CfnResourceDefaultVersion`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import cdk "github.com/aws/aws-cdk-go/awscdk" // // cfnResourceDefaultVersionProps := &CfnResourceDefaultVersionProps{ // TypeName: jsii.String("typeName"), // TypeVersionArn: jsii.String("typeVersionArn"), // VersionId: jsii.String("versionId"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.html // type CfnResourceDefaultVersionProps struct { // The name of the resource. // // Conditional: You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.html#cfn-cloudformation-resourcedefaultversion-typename // TypeName *string `field:"optional" json:"typeName" yaml:"typeName"` // The Amazon Resource Name (ARN) of the resource version. // // Conditional: You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.html#cfn-cloudformation-resourcedefaultversion-typeversionarn // TypeVersionArn *string `field:"optional" json:"typeVersionArn" yaml:"typeVersionArn"` // The ID of a specific version of the resource. // // The version ID is the value at the end of the Amazon Resource Name (ARN) assigned to the resource version when it's registered. // // Conditional: You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-resourcedefaultversion.html#cfn-cloudformation-resourcedefaultversion-versionid // VersionId *string `field:"optional" json:"versionId" yaml:"versionId"` }