package cloudassemblyschema // Query input for looking up a security 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" // // securityGroupContextQuery := &SecurityGroupContextQuery{ // Account: jsii.String("account"), // Region: jsii.String("region"), // // // the properties below are optional // LookupRoleArn: jsii.String("lookupRoleArn"), // SecurityGroupId: jsii.String("securityGroupId"), // SecurityGroupName: jsii.String("securityGroupName"), // VpcId: jsii.String("vpcId"), // } // type SecurityGroupContextQuery struct { // Query account. Account *string `field:"required" json:"account" yaml:"account"` // Query region. Region *string `field:"required" json:"region" yaml:"region"` // The ARN of the role that should be used to look up the missing values. LookupRoleArn *string `field:"optional" json:"lookupRoleArn" yaml:"lookupRoleArn"` // Security group id. SecurityGroupId *string `field:"optional" json:"securityGroupId" yaml:"securityGroupId"` // Security group name. SecurityGroupName *string `field:"optional" json:"securityGroupName" yaml:"securityGroupName"` // VPC ID. VpcId *string `field:"optional" json:"vpcId" yaml:"vpcId"` }