Type annotations for boto3.Redshift 1.14.45 service, generated by mypy-boto3-buider 2.2.0
Project description
mypy-boto3-redshift
Type annotations for boto3.Redshift 1.14.45 service compatible with mypy, VSCode, PyCharm and other tools.
Generated by mypy-boto3-buider 2.2.0.
More information can be found on boto3-stubs page.
How to install
Make sure you have mypy installed and activated in your IDE.
Install boto3-stubs
for Redshift
service.
python -m pip install boto3-stubs[redshift]
How to use
Client annotations
RedshiftClient
provides annotations for boto3.client("redshift")
.
import boto3
from mypy_boto3_redshift import RedshiftClient
from mypy_boto3_redshift.paginator import (
DescribeClusterDbRevisionsPaginator,
DescribeClusterParameterGroupsPaginator,
DescribeClusterParametersPaginator,
DescribeClusterSecurityGroupsPaginator,
DescribeClusterSnapshotsPaginator,
DescribeClustersPaginator,
DescribeClusterSubnetGroupsPaginator,
DescribeClusterTracksPaginator,
DescribeClusterVersionsPaginator,
DescribeDefaultClusterParametersPaginator,
DescribeEventsPaginator,
DescribeEventSubscriptionsPaginator,
DescribeHsmClientCertificatesPaginator,
DescribeHsmConfigurationsPaginator,
DescribeNodeConfigurationOptionsPaginator,
DescribeOrderableClusterOptionsPaginator,
DescribeReservedNodeOfferingsPaginator,
DescribeReservedNodesPaginator,
DescribeScheduledActionsPaginator,
DescribeSnapshotCopyGrantsPaginator,
DescribeSnapshotSchedulesPaginator,
DescribeTableRestoreStatusPaginator,
DescribeTagsPaginator,
DescribeUsageLimitsPaginator,
GetReservedNodeExchangeOfferingsPaginator,
)
from mypy_boto3_redshift.type_defs import AccountAttributeTypeDef, ...
from mypy_boto3_redshift.waiter import (
ClusterAvailableWaiter,
ClusterDeletedWaiter,
ClusterRestoredWaiter,
SnapshotAvailableWaiter,
)
client: RedshiftClient = boto3.client("redshift")
# now client usage is checked by mypy and IDE should provide code auto-complete
# works for session as well
session = boto3.session.Session(region="us-west-1")
session_client: RedshiftClient = session.client("redshift")
Paginators annotations
mypy_boto3_redshift.paginator
module contains type annotations for all paginators.
client: RedshiftClient = boto3.client("redshift")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
describe_cluster_db_revisions_paginator: DescribeClusterDbRevisionsPaginator = client.get_paginator("describe_cluster_db_revisions")
describe_cluster_parameter_groups_paginator: DescribeClusterParameterGroupsPaginator = client.get_paginator("describe_cluster_parameter_groups")
describe_cluster_parameters_paginator: DescribeClusterParametersPaginator = client.get_paginator("describe_cluster_parameters")
describe_cluster_security_groups_paginator: DescribeClusterSecurityGroupsPaginator = client.get_paginator("describe_cluster_security_groups")
describe_cluster_snapshots_paginator: DescribeClusterSnapshotsPaginator = client.get_paginator("describe_cluster_snapshots")
describe_cluster_subnet_groups_paginator: DescribeClusterSubnetGroupsPaginator = client.get_paginator("describe_cluster_subnet_groups")
describe_cluster_tracks_paginator: DescribeClusterTracksPaginator = client.get_paginator("describe_cluster_tracks")
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
describe_clusters_paginator: DescribeClustersPaginator = client.get_paginator("describe_clusters")
describe_default_cluster_parameters_paginator: DescribeDefaultClusterParametersPaginator = client.get_paginator("describe_default_cluster_parameters")
describe_event_subscriptions_paginator: DescribeEventSubscriptionsPaginator = client.get_paginator("describe_event_subscriptions")
describe_events_paginator: DescribeEventsPaginator = client.get_paginator("describe_events")
describe_hsm_client_certificates_paginator: DescribeHsmClientCertificatesPaginator = client.get_paginator("describe_hsm_client_certificates")
describe_hsm_configurations_paginator: DescribeHsmConfigurationsPaginator = client.get_paginator("describe_hsm_configurations")
describe_node_configuration_options_paginator: DescribeNodeConfigurationOptionsPaginator = client.get_paginator("describe_node_configuration_options")
describe_orderable_cluster_options_paginator: DescribeOrderableClusterOptionsPaginator = client.get_paginator("describe_orderable_cluster_options")
describe_reserved_node_offerings_paginator: DescribeReservedNodeOfferingsPaginator = client.get_paginator("describe_reserved_node_offerings")
describe_reserved_nodes_paginator: DescribeReservedNodesPaginator = client.get_paginator("describe_reserved_nodes")
describe_scheduled_actions_paginator: DescribeScheduledActionsPaginator = client.get_paginator("describe_scheduled_actions")
describe_snapshot_copy_grants_paginator: DescribeSnapshotCopyGrantsPaginator = client.get_paginator("describe_snapshot_copy_grants")
describe_snapshot_schedules_paginator: DescribeSnapshotSchedulesPaginator = client.get_paginator("describe_snapshot_schedules")
describe_table_restore_status_paginator: DescribeTableRestoreStatusPaginator = client.get_paginator("describe_table_restore_status")
describe_tags_paginator: DescribeTagsPaginator = client.get_paginator("describe_tags")
describe_usage_limits_paginator: DescribeUsageLimitsPaginator = client.get_paginator("describe_usage_limits")
get_reserved_node_exchange_offerings_paginator: GetReservedNodeExchangeOfferingsPaginator = client.get_paginator("get_reserved_node_exchange_offerings")
Waiters annotations
mypy_boto3_redshift.waiter
module contains type annotations for all waiters.
client: RedshiftClient = boto3.client("redshift")
# Explicit type annotations are optional here
# Type should be correctly discovered by mypy and IDEs
# VSCode requires explicit type annotations
cluster_available_waiter: ClusterAvailableWaiter = client.get_waiter("cluster_available")
cluster_deleted_waiter: ClusterDeletedWaiter = client.get_waiter("cluster_deleted")
cluster_restored_waiter: ClusterRestoredWaiter = client.get_waiter("cluster_restored")
snapshot_available_waiter: SnapshotAvailableWaiter = client.get_waiter("snapshot_available")
Typed dictionations
mypy_boto3_redshift.type_defs
module contains structures and shapes assembled
to typed dictionaries for additional type checking.
def get_structure() -> AccountAttributeTypeDef:
return {
...
}
Dynamic type annotations
mypy_boto3
command generates boto3.client/resource
type annotations for
mypy_boto3_redshift
and other installed services.
# Run this command after you add or remove service packages
python -m mypy_boto3
Generated type annotations provide overloads for boto3.client
and boto3.resource
,
boto3.Session.client
and boto3.Session.resource
functions,
so explicit type annotations are not needed.
mypy
supports function overloads as expectedPyCharm
also supports function overloads, but consumes a lot of RAM, use carefully if you have many services installedVSCode
does not currently support function overloads, use explicit type annotations
# Type is discovered correctly by mypy and PyCharm
# VSCode still needs explicit type annotations
client = boto3.client("redshift")
session_client = boto3.Session().client("redshift")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for mypy-boto3-redshift-1.14.45.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 719896cc36fcd9db119d989995d1032a38dcd74be5bf43fac4b95aded81b52f6 |
|
MD5 | c3ed8efde15c4eaa949d7f2cfcf099e0 |
|
BLAKE2b-256 | b843a8678156964634b90f84b6a92682635e8adc5fc61cdec6af6982bd08b4b5 |
Hashes for mypy_boto3_redshift-1.14.45.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3aee13e788bb3ce2ff1d8d127422b86a8f8467038d5a972367300c905f7f2e25 |
|
MD5 | ba45a8ba6dd126a1b63da65fe3b2c7f3 |
|
BLAKE2b-256 | a8a9c03e541860d5a77135c2dab4feac539015bc47515f192c92eef906918211 |