package awsec2 // Describes a resource statement. // // 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" // // resourceStatementRequestProperty := &ResourceStatementRequestProperty{ // Resources: []*string{ // jsii.String("resources"), // }, // ResourceTypes: []*string{ // jsii.String("resourceTypes"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-resourcestatementrequest.html // type CfnNetworkInsightsAccessScope_ResourceStatementRequestProperty struct { // The resources. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-resourcestatementrequest.html#cfn-ec2-networkinsightsaccessscope-resourcestatementrequest-resources // Resources *[]*string `field:"optional" json:"resources" yaml:"resources"` // The resource types. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinsightsaccessscope-resourcestatementrequest.html#cfn-ec2-networkinsightsaccessscope-resourcestatementrequest-resourcetypes // ResourceTypes *[]*string `field:"optional" json:"resourceTypes" yaml:"resourceTypes"` }