interface SecurityGroupContextQuery
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.SecurityGroupContextQuery |
Java | software.amazon.awscdk.cloudassembly.schema.SecurityGroupContextQuery |
Python | aws_cdk.cloud_assembly_schema.SecurityGroupContextQuery |
TypeScript | @aws-cdk/cloud-assembly-schema » SecurityGroupContextQuery |
Query input for looking up a security group.
Properties
| Name | Type | Description |
|---|---|---|
| account | string | Query account. |
| region | string | Query region. |
| assume | { [string]: any } | Additional options to pass to STS when assuming the lookup role. |
| lookup | string | The ARN of the role that should be used to look up the missing values. |
| lookup | string | The ExternalId that needs to be supplied while assuming this role. |
| security | string | Security group id. |
| security | string | Security group name. |
| vpc | string | VPC ID. |
account
Type:
string
Query account.
region
Type:
string
Query region.
assumeRoleAdditionalOptions?
Type:
{ [string]: any }
(optional, default: No additional options.)
Additional options to pass to STS when assuming the lookup role.
RoleArnshould not be used. Use the dedicatedlookupRoleArnproperty instead.ExternalIdshould not be used. Use the dedicatedlookupRoleExternalIdinstead.
See also: https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/STS.html#assumeRole-property
lookupRoleArn?
Type:
string
(optional, default: None)
The ARN of the role that should be used to look up the missing values.
lookupRoleExternalId?
Type:
string
(optional, default: No ExternalId will be supplied)
The ExternalId that needs to be supplied while assuming this role.
securityGroupId?
Type:
string
(optional, default: None)
Security group id.
securityGroupName?
Type:
string
(optional, default: None)
Security group name.
vpcId?
Type:
string
(optional, default: None)
VPC ID.

.NET
Java
Python
TypeScript