LoadBalancerContextQuery
- class aws_cdk.cloud_assembly_schema.LoadBalancerContextQuery(*, account, region, assume_role_additional_options=None, lookup_role_arn=None, lookup_role_external_id=None, load_balancer_type, load_balancer_arn=None, load_balancer_tags=None)
Bases:
LoadBalancerFilter
Query input for looking up a load balancer.
- Parameters:
account (
str
) – Query account.region (
str
) – Query region.assume_role_additional_options (
Optional
[Mapping
[str
,Any
]]) – Additional options to pass to STS when assuming the lookup role. -RoleArn
should not be used. Use the dedicatedlookupRoleArn
property instead. -ExternalId
should not be used. Use the dedicatedlookupRoleExternalId
instead. Default: - No additional options.lookup_role_arn (
Optional
[str
]) – The ARN of the role that should be used to look up the missing values. Default: - Nonelookup_role_external_id (
Optional
[str
]) – The ExternalId that needs to be supplied while assuming this role. Default: - No ExternalId will be suppliedload_balancer_type (
LoadBalancerType
) – Filter load balancers by their type.load_balancer_arn (
Optional
[str
]) – Find by load balancer’s ARN. Default: - does not search by load balancer arnload_balancer_tags (
Optional
[Sequence
[Union
[Tag
,Dict
[str
,Any
]]]]) – Match load balancer tags. Default: - does not match load balancers by tags
Attributes
- account
Query account.
- assume_role_additional_options
Additional options to pass to STS when assuming the lookup role.
RoleArn
should not be used. Use the dedicatedlookupRoleArn
property instead.ExternalId
should not be used. Use the dedicatedlookupRoleExternalId
instead.
- Default:
No additional options.
- See:
https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/STS.html#assumeRole-property
- load_balancer_arn
Find by load balancer’s ARN.
- Default:
does not search by load balancer arn
- load_balancer_tags
Match load balancer tags.
- Default:
does not match load balancers by tags
- load_balancer_type
Filter load balancers by their type.
- lookup_role_arn
The ARN of the role that should be used to look up the missing values.
- Default:
None
- lookup_role_external_id
The ExternalId that needs to be supplied while assuming this role.
- Default:
No ExternalId will be supplied
- region
Query region.