├── .codeclimate.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── boto3_type_annotations ├── LICENSE ├── README.md ├── boto3_type_annotations │ ├── __init__.py │ ├── acm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── acm_pca │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── alexaforbusiness │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── amplify │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── apigateway │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── apigatewaymanagementapi │ │ ├── __init__.py │ │ └── client.py │ ├── apigatewayv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── application_autoscaling │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── appmesh │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── appstream │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── appsync │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── athena │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── autoscaling │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── autoscaling_plans │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── backup │ │ ├── __init__.py │ │ └── client.py │ ├── batch │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── budgets │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ce │ │ ├── __init__.py │ │ └── client.py │ ├── chime │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloud9 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── clouddirectory │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudformation │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── cloudfront │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── cloudhsm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudhsmv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudsearch │ │ ├── __init__.py │ │ └── client.py │ ├── cloudsearchdomain │ │ ├── __init__.py │ │ └── client.py │ ├── cloudtrail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudwatch │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── codebuild │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codecommit │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codedeploy │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── codepipeline │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codestar │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_identity │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_idp │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_sync │ │ ├── __init__.py │ │ └── client.py │ ├── comprehend │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── comprehendmedical │ │ ├── __init__.py │ │ └── client.py │ ├── config │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── connect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cur │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── datapipeline │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── datasync │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dax │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── devicefarm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── directconnect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── discovery │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dlm │ │ ├── __init__.py │ │ └── client.py │ ├── dms │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── docdb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── ds │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── dynamodbstreams │ │ ├── __init__.py │ │ └── client.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── ecr │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ecs │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── efs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── eks │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elasticache │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elasticbeanstalk │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── elastictranscoder │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elbv2 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── emr │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── es │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── events │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── firehose │ │ ├── __init__.py │ │ └── client.py │ ├── fms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── fsx │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── gamelift │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── glacier │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── globalaccelerator │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── glue │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── greengrass │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── guardduty │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── health │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iam │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── importexport │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── inspector │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot1click_devices │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot1click_projects │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot_data │ │ ├── __init__.py │ │ └── client.py │ ├── iot_jobs_data │ │ ├── __init__.py │ │ └── client.py │ ├── iotanalytics │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kafka │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesis │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── kinesis_video_archived_media │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesis_video_media │ │ ├── __init__.py │ │ └── client.py │ ├── kinesisanalytics │ │ ├── __init__.py │ │ └── client.py │ ├── kinesisanalyticsv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesisvideo │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lambda_ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── lex_models │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lex_runtime │ │ ├── __init__.py │ │ └── client.py │ ├── license_manager │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lightsail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── logs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── machinelearning │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── macie │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── managedblockchain │ │ ├── __init__.py │ │ └── client.py │ ├── marketplace_entitlement │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── marketplacecommerceanalytics │ │ ├── __init__.py │ │ └── client.py │ ├── mediaconnect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediaconvert │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── medialive │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediapackage │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediastore │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediastore_data │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediatailor │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── meteringmarketplace │ │ ├── __init__.py │ │ └── client.py │ ├── mgh │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mobile │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mq │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mturk │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── neptune │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── opsworks │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── opsworkscm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── organizations │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pi │ │ ├── __init__.py │ │ └── client.py │ ├── pinpoint │ │ ├── __init__.py │ │ └── client.py │ ├── pinpoint_email │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pinpoint_sms_voice │ │ ├── __init__.py │ │ └── client.py │ ├── polly │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pricing │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── quicksight │ │ ├── __init__.py │ │ └── client.py │ ├── ram │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── rds │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── rds_data │ │ ├── __init__.py │ │ └── client.py │ ├── redshift │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── rekognition │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── resource_groups │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── resourcegroupstaggingapi │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── robomaker │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── route53 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── route53domains │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── route53resolver │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── s3 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── s3control │ │ ├── __init__.py │ │ └── client.py │ ├── sagemaker │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── sagemaker_runtime │ │ ├── __init__.py │ │ └── client.py │ ├── sdb │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── secretsmanager │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── securityhub │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── serverlessrepo │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── servicecatalog │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── servicediscovery │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ses │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── shield │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── signer │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── sms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sms_voice │ │ ├── __init__.py │ │ └── client.py │ ├── snowball │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sns │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── service_resource.py │ ├── sqs │ │ ├── __init__.py │ │ ├── client.py │ │ └── service_resource.py │ ├── ssm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── stepfunctions │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── storagegateway │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sts │ │ ├── __init__.py │ │ └── client.py │ ├── support │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── swf │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── textract │ │ ├── __init__.py │ │ └── client.py │ ├── transcribe │ │ ├── __init__.py │ │ └── client.py │ ├── transfer │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── translate │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── waf │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── waf_regional │ │ ├── __init__.py │ │ └── client.py │ ├── workdocs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── worklink │ │ ├── __init__.py │ │ └── client.py │ ├── workmail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── workspaces │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ └── xray │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py └── setup.py ├── boto3_type_annotations_with_docs ├── LICENSE ├── README.md ├── boto3_type_annotations │ ├── __init__.py │ ├── acm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── acm_pca │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── alexaforbusiness │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── amplify │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── apigateway │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── apigatewaymanagementapi │ │ ├── __init__.py │ │ └── client.py │ ├── apigatewayv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── application_autoscaling │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── appmesh │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── appstream │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── appsync │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── athena │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── autoscaling │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── autoscaling_plans │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── backup │ │ ├── __init__.py │ │ └── client.py │ ├── batch │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── budgets │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ce │ │ ├── __init__.py │ │ └── client.py │ ├── chime │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloud9 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── clouddirectory │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudformation │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── cloudfront │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── cloudhsm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudhsmv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudsearch │ │ ├── __init__.py │ │ └── client.py │ ├── cloudsearchdomain │ │ ├── __init__.py │ │ └── client.py │ ├── cloudtrail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cloudwatch │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── codebuild │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codecommit │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codedeploy │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── codepipeline │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── codestar │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_identity │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_idp │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cognito_sync │ │ ├── __init__.py │ │ └── client.py │ ├── comprehend │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── comprehendmedical │ │ ├── __init__.py │ │ └── client.py │ ├── config │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── connect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── cur │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── datapipeline │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── datasync │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dax │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── devicefarm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── directconnect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── discovery │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dlm │ │ ├── __init__.py │ │ └── client.py │ ├── dms │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── docdb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── ds │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── dynamodb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── dynamodbstreams │ │ ├── __init__.py │ │ └── client.py │ ├── ec2 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── ecr │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ecs │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── efs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── eks │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elasticache │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elasticbeanstalk │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── elastictranscoder │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elb │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── elbv2 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── emr │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── es │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── events │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── firehose │ │ ├── __init__.py │ │ └── client.py │ ├── fms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── fsx │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── gamelift │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── glacier │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── globalaccelerator │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── glue │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── greengrass │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── guardduty │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── health │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iam │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── importexport │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── inspector │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot1click_devices │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot1click_projects │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── iot_data │ │ ├── __init__.py │ │ └── client.py │ ├── iot_jobs_data │ │ ├── __init__.py │ │ └── client.py │ ├── iotanalytics │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kafka │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesis │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── kinesis_video_archived_media │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesis_video_media │ │ ├── __init__.py │ │ └── client.py │ ├── kinesisanalytics │ │ ├── __init__.py │ │ └── client.py │ ├── kinesisanalyticsv2 │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kinesisvideo │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── kms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lambda_ │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── lex_models │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lex_runtime │ │ ├── __init__.py │ │ └── client.py │ ├── license_manager │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── lightsail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── logs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── machinelearning │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── macie │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── managedblockchain │ │ ├── __init__.py │ │ └── client.py │ ├── marketplace_entitlement │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── marketplacecommerceanalytics │ │ ├── __init__.py │ │ └── client.py │ ├── mediaconnect │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediaconvert │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── medialive │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediapackage │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediastore │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediastore_data │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mediatailor │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── meteringmarketplace │ │ ├── __init__.py │ │ └── client.py │ ├── mgh │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mobile │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mq │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── mturk │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── neptune │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── opsworks │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── opsworkscm │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── organizations │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pi │ │ ├── __init__.py │ │ └── client.py │ ├── pinpoint │ │ ├── __init__.py │ │ └── client.py │ ├── pinpoint_email │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pinpoint_sms_voice │ │ ├── __init__.py │ │ └── client.py │ ├── polly │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── pricing │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── quicksight │ │ ├── __init__.py │ │ └── client.py │ ├── ram │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── rds │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── rds_data │ │ ├── __init__.py │ │ └── client.py │ ├── redshift │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── rekognition │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── resource_groups │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── resourcegroupstaggingapi │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── robomaker │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── route53 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── route53domains │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── route53resolver │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── s3 │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ ├── service_resource.py │ │ └── waiter.py │ ├── s3control │ │ ├── __init__.py │ │ └── client.py │ ├── sagemaker │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── sagemaker_runtime │ │ ├── __init__.py │ │ └── client.py │ ├── sdb │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── secretsmanager │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── securityhub │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── serverlessrepo │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── servicecatalog │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── servicediscovery │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── ses │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── shield │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── signer │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── waiter.py │ ├── sms │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sms_voice │ │ ├── __init__.py │ │ └── client.py │ ├── snowball │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sns │ │ ├── __init__.py │ │ ├── client.py │ │ ├── paginator.py │ │ └── service_resource.py │ ├── sqs │ │ ├── __init__.py │ │ ├── client.py │ │ └── service_resource.py │ ├── ssm │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── stepfunctions │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── storagegateway │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── sts │ │ ├── __init__.py │ │ └── client.py │ ├── support │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── swf │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── textract │ │ ├── __init__.py │ │ └── client.py │ ├── transcribe │ │ ├── __init__.py │ │ └── client.py │ ├── transfer │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── translate │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── waf │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── waf_regional │ │ ├── __init__.py │ │ └── client.py │ ├── workdocs │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── worklink │ │ ├── __init__.py │ │ └── client.py │ ├── workmail │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ ├── workspaces │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py │ └── xray │ │ ├── __init__.py │ │ ├── client.py │ │ └── paginator.py └── setup.py ├── configs ├── example.clients_only.yaml ├── example.essentials.yaml ├── with_docs.yaml └── without_docs.yaml ├── img └── boto3_type_annotations.gif └── requirements.txt /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ 3 | __pycache__/ 4 | dist/ 5 | *.egg-info/ 6 | build/ 7 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/README.md -------------------------------------------------------------------------------- /boto3_type_annotations/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/LICENSE -------------------------------------------------------------------------------- /boto3_type_annotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/README.md -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm_pca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm_pca/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm_pca/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm_pca/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm_pca/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm_pca/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/acm_pca/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/acm_pca/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/alexaforbusiness/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/alexaforbusiness/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/alexaforbusiness/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/alexaforbusiness/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/amplify/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/amplify/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/amplify/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/amplify/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/amplify/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/amplify/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigateway/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigateway/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigateway/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigateway/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigateway/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigateway/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigatewayv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigatewayv2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigatewayv2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigatewayv2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/apigatewayv2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/apigatewayv2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appmesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appmesh/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appmesh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appmesh/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appmesh/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appmesh/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appstream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appstream/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appstream/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appstream/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appstream/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appstream/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appstream/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appstream/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appsync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appsync/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appsync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appsync/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/appsync/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/appsync/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/athena/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/athena/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/athena/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/athena/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/athena/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/athena/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/autoscaling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/autoscaling/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/autoscaling/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/autoscaling/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/autoscaling/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/autoscaling/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/autoscaling_plans/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/autoscaling_plans/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/backup/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/backup/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/backup/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/batch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/batch/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/batch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/batch/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/batch/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/batch/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/budgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/budgets/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/budgets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/budgets/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/budgets/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/budgets/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ce/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ce/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ce/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/chime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/chime/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/chime/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/chime/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/chime/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/chime/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloud9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloud9/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloud9/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloud9/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloud9/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloud9/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/clouddirectory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/clouddirectory/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/clouddirectory/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/clouddirectory/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/clouddirectory/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/clouddirectory/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudformation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudformation/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudformation/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudformation/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudformation/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudformation/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudformation/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudformation/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudfront/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudfront/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudfront/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudfront/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudfront/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudfront/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudfront/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudfront/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsmv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsmv2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsmv2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsmv2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudhsmv2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudhsmv2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudsearch/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudsearch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudsearch/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudsearchdomain/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudsearchdomain/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudtrail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudtrail/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudtrail/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudtrail/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudtrail/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudtrail/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudwatch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudwatch/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudwatch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudwatch/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudwatch/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudwatch/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cloudwatch/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cloudwatch/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codebuild/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codebuild/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codebuild/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codebuild/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codebuild/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codebuild/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codecommit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codecommit/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codecommit/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codecommit/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codecommit/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codecommit/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codedeploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codedeploy/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codedeploy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codedeploy/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codedeploy/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codedeploy/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codedeploy/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codedeploy/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codepipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codepipeline/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codepipeline/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codepipeline/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codepipeline/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codepipeline/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codestar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codestar/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codestar/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codestar/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/codestar/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/codestar/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_identity/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_identity/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_identity/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_idp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_idp/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_idp/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_idp/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_idp/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_idp/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_sync/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cognito_sync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cognito_sync/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/comprehend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/comprehend/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/comprehend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/comprehend/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/comprehend/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/comprehend/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/comprehendmedical/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/comprehendmedical/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/config/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/config/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/config/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/config/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/config/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/connect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/connect/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/connect/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/connect/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/connect/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/connect/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cur/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cur/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cur/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cur/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/cur/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/cur/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datapipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datapipeline/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datapipeline/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datapipeline/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datapipeline/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datapipeline/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datasync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datasync/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datasync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datasync/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/datasync/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/datasync/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dax/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dax/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dax/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dax/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dax/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/devicefarm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/devicefarm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/devicefarm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/devicefarm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/devicefarm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/devicefarm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/directconnect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/directconnect/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/directconnect/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/directconnect/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/directconnect/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/directconnect/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/discovery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/discovery/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/discovery/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/discovery/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/discovery/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/discovery/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dlm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dlm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dlm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dlm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dms/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dms/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/docdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/docdb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/docdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/docdb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/docdb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/docdb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/docdb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/docdb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ds/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ds/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ds/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ds/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodb/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodb/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodbstreams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodbstreams/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/dynamodbstreams/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/dynamodbstreams/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ec2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ec2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ec2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ec2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ec2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ec2/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ec2/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ec2/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ec2/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecr/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecr/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecr/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecr/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecr/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ecs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ecs/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/efs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/efs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/efs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/efs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/efs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/efs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/eks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/eks/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/eks/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/eks/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/eks/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/eks/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/eks/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/eks/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticache/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticache/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticache/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticache/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticache/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticache/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticache/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticbeanstalk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticbeanstalk/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elasticbeanstalk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elasticbeanstalk/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elastictranscoder/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elastictranscoder/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elastictranscoder/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elastictranscoder/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elbv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elbv2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elbv2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elbv2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elbv2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elbv2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/elbv2/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/elbv2/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/emr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/emr/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/emr/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/emr/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/emr/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/emr/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/emr/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/emr/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/es/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/es/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/es/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/es/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/es/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/events/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/events/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/events/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/events/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/events/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/firehose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/firehose/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/firehose/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/firehose/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fsx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fsx/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fsx/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fsx/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/fsx/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/fsx/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/gamelift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/gamelift/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/gamelift/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/gamelift/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/gamelift/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/gamelift/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glacier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glacier/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glacier/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glacier/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glacier/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glacier/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glacier/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glacier/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glacier/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glacier/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/globalaccelerator/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/globalaccelerator/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glue/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glue/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glue/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/glue/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/glue/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/greengrass/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/greengrass/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/greengrass/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/greengrass/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/greengrass/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/greengrass/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/guardduty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/guardduty/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/guardduty/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/guardduty/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/guardduty/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/guardduty/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/health/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/health/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/health/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/health/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/health/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/health/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iam/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iam/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iam/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iam/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iam/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iam/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iam/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iam/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iam/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/importexport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/importexport/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/importexport/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/importexport/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/importexport/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/importexport/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/inspector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/inspector/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/inspector/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/inspector/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/inspector/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/inspector/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot1click_devices/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot1click_devices/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot1click_projects/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot1click_projects/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot_data/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot_data/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot_data/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot_jobs_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot_jobs_data/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iot_jobs_data/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iot_jobs_data/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iotanalytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iotanalytics/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iotanalytics/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iotanalytics/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/iotanalytics/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/iotanalytics/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kafka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kafka/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kafka/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kafka/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kafka/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kafka/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesis/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesis/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesis/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesis/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesis/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesis/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesis/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisanalytics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisanalytics/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisanalytics/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisanalytics/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisanalyticsv2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisanalyticsv2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisvideo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisvideo/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisvideo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisvideo/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kinesisvideo/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kinesisvideo/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/kms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/kms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lambda_/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lambda_/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lambda_/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lambda_/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lambda_/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lambda_/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lambda_/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lambda_/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lex_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lex_models/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lex_models/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lex_models/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lex_models/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lex_models/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lex_runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lex_runtime/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lex_runtime/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lex_runtime/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/license_manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/license_manager/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/license_manager/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/license_manager/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/license_manager/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/license_manager/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lightsail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lightsail/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lightsail/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lightsail/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/lightsail/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/lightsail/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/logs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/logs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/logs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/logs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/logs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/logs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/machinelearning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/machinelearning/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/machinelearning/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/machinelearning/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/machinelearning/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/machinelearning/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/machinelearning/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/machinelearning/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/macie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/macie/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/macie/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/macie/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/macie/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/macie/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/managedblockchain/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/managedblockchain/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconnect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconnect/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconnect/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconnect/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconnect/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconnect/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconvert/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconvert/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconvert/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconvert/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediaconvert/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediaconvert/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/medialive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/medialive/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/medialive/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/medialive/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/medialive/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/medialive/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediapackage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediapackage/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediapackage/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediapackage/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediapackage/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediapackage/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore_data/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore_data/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore_data/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediastore_data/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediastore_data/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediatailor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediatailor/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediatailor/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediatailor/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mediatailor/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mediatailor/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mgh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mgh/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mgh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mgh/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mgh/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mgh/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mobile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mobile/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mobile/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mobile/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mobile/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mobile/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mq/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mq/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mq/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mq/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mq/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mturk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mturk/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mturk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mturk/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/mturk/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/mturk/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/neptune/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/neptune/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/neptune/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/neptune/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/neptune/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/neptune/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/neptune/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/neptune/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworks/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworks/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworks/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworks/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworks/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworks/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworks/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworks/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworks/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworkscm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworkscm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworkscm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworkscm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworkscm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworkscm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/opsworkscm/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/opsworkscm/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/organizations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/organizations/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/organizations/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/organizations/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/organizations/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/organizations/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pi/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pi/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint_email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint_email/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint_email/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint_email/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint_email/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint_email/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pinpoint_sms_voice/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pinpoint_sms_voice/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/polly/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/polly/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/polly/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/polly/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/polly/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/polly/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pricing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pricing/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pricing/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pricing/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/pricing/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/pricing/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/quicksight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/quicksight/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/quicksight/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/quicksight/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ram/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ram/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ram/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ram/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ram/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds_data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds_data/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rds_data/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rds_data/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/redshift/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/redshift/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/redshift/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/redshift/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/redshift/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/redshift/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/redshift/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/redshift/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rekognition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rekognition/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rekognition/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rekognition/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/rekognition/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/rekognition/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/resource_groups/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/resource_groups/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/resource_groups/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/resource_groups/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/resource_groups/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/resource_groups/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/robomaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/robomaker/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/robomaker/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/robomaker/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/robomaker/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/robomaker/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53domains/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53domains/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53domains/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53domains/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53domains/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53domains/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53resolver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53resolver/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53resolver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53resolver/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/route53resolver/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/route53resolver/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3control/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3control/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/s3control/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/s3control/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sagemaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sagemaker/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sagemaker/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sagemaker/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sagemaker/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sagemaker/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sagemaker/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sagemaker/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sagemaker_runtime/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sagemaker_runtime/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sdb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sdb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sdb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sdb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/secretsmanager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/secretsmanager/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/secretsmanager/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/secretsmanager/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/secretsmanager/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/secretsmanager/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/securityhub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/securityhub/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/securityhub/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/securityhub/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/securityhub/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/securityhub/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/serverlessrepo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/serverlessrepo/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/serverlessrepo/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/serverlessrepo/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/serverlessrepo/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/serverlessrepo/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/servicecatalog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/servicecatalog/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/servicecatalog/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/servicecatalog/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/servicecatalog/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/servicecatalog/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/servicediscovery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/servicediscovery/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/servicediscovery/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/servicediscovery/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ses/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ses/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ses/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ses/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ses/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ses/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ses/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/shield/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/shield/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/shield/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/shield/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/shield/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/shield/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/signer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/signer/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/signer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/signer/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/signer/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/signer/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/signer/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/signer/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sms_voice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sms_voice/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sms_voice/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sms_voice/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/snowball/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/snowball/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/snowball/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/snowball/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/snowball/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/snowball/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sns/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sns/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sns/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sns/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sns/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sns/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sns/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sqs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sqs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sqs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sqs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sqs/service_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sqs/service_resource.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ssm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ssm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ssm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ssm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/ssm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/ssm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/stepfunctions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/stepfunctions/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/stepfunctions/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/stepfunctions/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/stepfunctions/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/stepfunctions/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/storagegateway/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/storagegateway/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/storagegateway/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/storagegateway/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/storagegateway/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/storagegateway/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sts/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/sts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/sts/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/support/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/support/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/support/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/support/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/support/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/swf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/swf/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/swf/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/swf/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/swf/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/swf/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/textract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/textract/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/textract/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/textract/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/transcribe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/transcribe/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/transcribe/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/transcribe/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/transfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/transfer/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/transfer/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/transfer/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/transfer/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/transfer/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/translate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/translate/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/translate/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/translate/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/translate/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/translate/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/waf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/waf/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/waf/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/waf/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/waf/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/waf/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/waf_regional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/waf_regional/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/waf_regional/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/waf_regional/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workdocs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workdocs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workdocs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workdocs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workdocs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workdocs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/worklink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/worklink/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/worklink/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/worklink/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workmail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workmail/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workmail/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workmail/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workmail/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workmail/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workspaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workspaces/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workspaces/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workspaces/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/workspaces/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/workspaces/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/xray/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/xray/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/xray/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/xray/client.py -------------------------------------------------------------------------------- /boto3_type_annotations/boto3_type_annotations/xray/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/boto3_type_annotations/xray/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations/setup.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/LICENSE -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/README.md -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm_pca/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm_pca/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/acm_pca/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/acm_pca/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/amplify/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/amplify/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/appmesh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/appmesh/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/appsync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/appsync/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/athena/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/athena/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/athena/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/athena/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/backup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/backup/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/backup/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/backup/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/batch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/batch/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/batch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/batch/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/batch/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/batch/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/budgets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/budgets/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ce/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ce/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ce/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/chime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/chime/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/chime/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/chime/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/chime/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/chime/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cloud9/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cloud9/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cloud9/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cloud9/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cloudhsm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cloudhsm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/codestar/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/codestar/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/config/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/config/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/config/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/connect/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/connect/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cur/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cur/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cur/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cur/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/cur/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/cur/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/datasync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/datasync/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dax/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dax/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dax/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dax/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dax/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dlm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dlm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dlm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dlm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dms/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dms/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/docdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/docdb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/docdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/docdb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/docdb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/docdb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/docdb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/docdb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ds/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ds/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ds/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ds/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dynamodb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dynamodb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/dynamodb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/dynamodb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ec2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ec2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ec2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ec2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ec2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ec2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ec2/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ec2/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecr/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecr/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecr/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecr/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecr/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ecs/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ecs/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/efs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/efs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/efs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/efs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/efs/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/efs/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/eks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/eks/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/eks/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/eks/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/eks/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/eks/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/eks/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/eks/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elb/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elb/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elb/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elb/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/elbv2/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/emr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/emr/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/emr/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/emr/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/emr/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/emr/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/emr/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/emr/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/es/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/es/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/es/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/es/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/es/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/es/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/events/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/events/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/events/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/firehose/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/firehose/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fsx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fsx/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fsx/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fsx/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/fsx/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/fsx/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/gamelift/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/gamelift/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/glacier/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/glacier/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/glacier/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/glacier/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/glue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/glue/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/glue/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/glue/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/glue/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/glue/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/health/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/health/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/health/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/health/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iam/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iam/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iam/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iam/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iam/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iam/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iam/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iot/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iot/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iot/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iot/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iot/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/iot_data/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/iot_data/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kafka/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kafka/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kafka/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kafka/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kafka/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kafka/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kinesis/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kinesis/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kinesis/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kinesis/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/kms/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/kms/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/logs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/logs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/macie/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/macie/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mgh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mgh/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mgh/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mgh/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mq/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mq/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mq/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mq/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mq/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/mturk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/mturk/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/pi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/pi/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/pi/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/pi/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/polly/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/polly/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ram/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ram/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ram/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/rds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/rds/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/rds/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/rds/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/rds/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/rds/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/s3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/s3/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/s3/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/s3/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/s3/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/s3/paginator.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/s3/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/s3/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sdb/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sdb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sdb/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ses/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ses/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ses/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ses/waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ses/waiter.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sms/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sms/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sms/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sns/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sns/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sns/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sns/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sqs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sqs/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sqs/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sqs/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ssm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ssm/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/ssm/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/ssm/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sts/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/sts/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/sts/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/swf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/swf/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/swf/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/swf/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/waf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/waf/__init__.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/waf/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/waf/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/boto3_type_annotations/xray/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/boto3_type_annotations/xray/client.py -------------------------------------------------------------------------------- /boto3_type_annotations_with_docs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/boto3_type_annotations_with_docs/setup.py -------------------------------------------------------------------------------- /configs/example.clients_only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/configs/example.clients_only.yaml -------------------------------------------------------------------------------- /configs/example.essentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/configs/example.essentials.yaml -------------------------------------------------------------------------------- /configs/with_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/configs/with_docs.yaml -------------------------------------------------------------------------------- /configs/without_docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/configs/without_docs.yaml -------------------------------------------------------------------------------- /img/boto3_type_annotations.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/img/boto3_type_annotations.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alliefitter/boto3_type_annotations/HEAD/requirements.txt --------------------------------------------------------------------------------