VPCLatticeClient#
Index > VPCLattice > VPCLatticeClient
Auto-generated documentation for VPCLattice type annotations stubs module mypy-boto3-vpc-lattice.
VPCLatticeClient#
Type annotations and code completion for boto3.client("vpc-lattice")
.
boto3 documentation
# VPCLatticeClient usage example
from boto3.session import Session
from mypy_boto3_vpc_lattice.client import VPCLatticeClient
def get_vpc-lattice_client() -> VPCLatticeClient:
return Session().client("vpc-lattice")
Exceptions#
boto3
client exceptions are generated in runtime.
This class provides code completion for boto3.client("vpc-lattice").exceptions
structure.
# Exceptions.exceptions usage example
client = boto3.client("vpc-lattice")
try:
do_something(client)
except (
client.exceptions.AccessDeniedException,
client.exceptions.ClientError,
client.exceptions.ConflictException,
client.exceptions.InternalServerException,
client.exceptions.ResourceNotFoundException,
client.exceptions.ServiceQuotaExceededException,
client.exceptions.ThrottlingException,
client.exceptions.ValidationException,
) as e:
print(e)
# Exceptions.exceptions type checking example
from mypy_boto3_vpc_lattice.client import Exceptions
def handle_error(exc: Exceptions.AccessDeniedException) -> None:
...
Methods#
batch_update_rule#
Updates the listener rules in a batch.
Type annotations and code completion for boto3.client("vpc-lattice").batch_update_rule
method.
boto3 documentation
# batch_update_rule method definition
def batch_update_rule(
self,
*,
listenerIdentifier: str,
rules: Sequence[RuleUpdateTypeDef], # (1)
serviceIdentifier: str,
) -> BatchUpdateRuleResponseTypeDef: # (2)
...
# batch_update_rule method usage example with argument unpacking
kwargs: BatchUpdateRuleRequestRequestTypeDef = { # (1)
"listenerIdentifier": ...,
"rules": ...,
"serviceIdentifier": ...,
}
parent.batch_update_rule(**kwargs)
can_paginate#
Check if an operation can be paginated.
Type annotations and code completion for boto3.client("vpc-lattice").can_paginate
method.
boto3 documentation
# can_paginate method definition
def can_paginate(
self,
operation_name: str,
) -> bool:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("vpc-lattice").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_access_log_subscription#
Enables access logs to be sent to Amazon CloudWatch, Amazon S3, and Amazon Kinesis Data Firehose.
Type annotations and code completion for boto3.client("vpc-lattice").create_access_log_subscription
method.
boto3 documentation
# create_access_log_subscription method definition
def create_access_log_subscription(
self,
*,
destinationArn: str,
resourceIdentifier: str,
clientToken: str = ...,
tags: Mapping[str, str] = ...,
) -> CreateAccessLogSubscriptionResponseTypeDef: # (1)
...
# create_access_log_subscription method usage example with argument unpacking
kwargs: CreateAccessLogSubscriptionRequestRequestTypeDef = { # (1)
"destinationArn": ...,
"resourceIdentifier": ...,
}
parent.create_access_log_subscription(**kwargs)
create_listener#
Creates a listener for a service.
Type annotations and code completion for boto3.client("vpc-lattice").create_listener
method.
boto3 documentation
# create_listener method definition
def create_listener(
self,
*,
defaultAction: Union[RuleActionTypeDef, RuleActionOutputTypeDef], # (1)
name: str,
protocol: ListenerProtocolType, # (2)
serviceIdentifier: str,
clientToken: str = ...,
port: int = ...,
tags: Mapping[str, str] = ...,
) -> CreateListenerResponseTypeDef: # (3)
...