package awsiottwinmaker // The property group. // // 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" // // propertyGroupProperty := &PropertyGroupProperty{ // GroupType: jsii.String("groupType"), // PropertyNames: []*string{ // jsii.String("propertyNames"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-propertygroup.html // type CfnEntity_PropertyGroupProperty struct { // The group type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-propertygroup.html#cfn-iottwinmaker-entity-propertygroup-grouptype // GroupType *string `field:"optional" json:"groupType" yaml:"groupType"` // The property names. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-propertygroup.html#cfn-iottwinmaker-entity-propertygroup-propertynames // PropertyNames *[]*string `field:"optional" json:"propertyNames" yaml:"propertyNames"` }