-
Notifications
You must be signed in to change notification settings - Fork 17
/
CfnHookDefaultVersionProps.go
39 lines (36 loc) · 1.73 KB
/
CfnHookDefaultVersionProps.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package awscdk
// Properties for defining a `CfnHookDefaultVersion`.
//
// 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"
//
// cfnHookDefaultVersionProps := &CfnHookDefaultVersionProps{
// TypeName: jsii.String("typeName"),
// TypeVersionArn: jsii.String("typeVersionArn"),
// VersionId: jsii.String("versionId"),
// }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.html
//
type CfnHookDefaultVersionProps struct {
// The name of the hook.
//
// You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` .
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.html#cfn-cloudformation-hookdefaultversion-typename
//
TypeName *string `field:"optional" json:"typeName" yaml:"typeName"`
// The version ID of the type configuration.
//
// You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` .
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.html#cfn-cloudformation-hookdefaultversion-typeversionarn
//
TypeVersionArn *string `field:"optional" json:"typeVersionArn" yaml:"typeVersionArn"`
// The version ID of the type specified.
//
// You must specify either `TypeVersionArn` , or `TypeName` and `VersionId` .
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-hookdefaultversion.html#cfn-cloudformation-hookdefaultversion-versionid
//
VersionId *string `field:"optional" json:"versionId" yaml:"versionId"`
}