capo-cloudfront 0.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- capo_cloudfront/__init__.py +52 -0
- capo_cloudfront/_async.py +25 -0
- capo_cloudfront/_auth/_identity.py +16 -0
- capo_cloudfront/_auth/_providers.py +318 -0
- capo_cloudfront/_auth/_signers.py +84 -0
- capo_cloudfront/_auth/_sigv4.py +382 -0
- capo_cloudfront/_auth/_zapros_handler.py +62 -0
- capo_cloudfront/_iter.py +113 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/associate_alias.py +128 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/associate_distribution_tenant_web_acl.py +164 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/associate_distribution_web_acl.py +161 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/copy_distribution.py +464 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_anycast_ip_list.py +177 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_cache_policy.py +183 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_cloud_front_origin_access_identity.py +170 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_connection_function.py +184 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_connection_group.py +169 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_continuous_deployment_policy.py +175 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_distribution.py +468 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_distribution_tenant.py +199 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_distribution_with_tags.py +468 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_field_level_encryption_config.py +187 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_field_level_encryption_profile.py +187 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_function.py +176 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_invalidation.py +177 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_invalidation_for_distribution_tenant.py +170 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_key_group.py +163 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_key_value_store.py +178 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_monitoring_subscription.py +163 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_origin_access_control.py +162 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_origin_request_policy.py +185 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_public_key.py +160 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_realtime_log_config.py +156 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_response_headers_policy.py +185 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_streaming_distribution.py +206 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_streaming_distribution_with_tags.py +209 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_trust_store.py +172 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/create_vpc_origin.py +177 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_anycast_ip_list.py +136 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_cache_policy.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_cloud_front_origin_access_identity.py +129 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_connection_function.py +133 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_connection_group.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_continuous_deployment_policy.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_distribution.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_distribution_tenant.py +125 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_field_level_encryption_config.py +127 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_field_level_encryption_profile.py +127 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_function.py +127 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_key_group.py +120 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_key_value_store.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_monitoring_subscription.py +146 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_origin_access_control.py +127 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_origin_request_policy.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_public_key.py +125 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_realtime_log_config.py +122 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_resource_policy.py +126 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_response_headers_policy.py +130 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_streaming_distribution.py +127 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_trust_store.py +128 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/delete_vpc_origin.py +170 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/describe_connection_function.py +156 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/describe_function.py +149 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/describe_key_value_store.py +150 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/disassociate_distribution_tenant_web_acl.py +155 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/disassociate_distribution_web_acl.py +154 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_anycast_ip_list.py +150 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_cache_policy.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_cache_policy_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_cloud_front_origin_access_identity.py +146 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_cloud_front_origin_access_identity_config.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_connection_function.py +154 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_connection_group.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_connection_group_by_routing_endpoint.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_continuous_deployment_policy.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_continuous_deployment_policy_config.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_distribution.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_distribution_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_distribution_tenant.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_distribution_tenant_by_domain.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_field_level_encryption.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_field_level_encryption_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_field_level_encryption_profile.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_field_level_encryption_profile_config.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_function.py +151 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_invalidation.py +149 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_invalidation_for_distribution_tenant.py +149 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_key_group.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_key_group_config.py +139 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_managed_certificate_details.py +138 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_monitoring_subscription.py +155 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_origin_access_control.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_origin_access_control_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_origin_request_policy.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_origin_request_policy_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_public_key.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_public_key_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_realtime_log_config.py +143 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_resource_policy.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_response_headers_policy.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_response_headers_policy_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_streaming_distribution.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_streaming_distribution_config.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_trust_store.py +143 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/get_vpc_origin.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_anycast_ip_lists.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_cache_policies.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_cloud_front_origin_access_identities.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_conflicting_aliases.py +146 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_connection_functions.py +152 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_connection_groups.py +146 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_continuous_deployment_policies.py +145 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distribution_tenants.py +150 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distribution_tenants_by_customization.py +145 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_anycast_ip_list_id.py +155 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_cache_policy_id.py +150 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_connection_function.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_connection_mode.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_key_group.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_origin_request_policy_id.py +153 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_owned_resource.py +153 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_realtime_log_config.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_response_headers_policy_id.py +153 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_trust_store.py +145 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_vpc_origin_id.py +153 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_distributions_by_web_acl_id.py +144 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_domain_conflicts.py +150 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_field_level_encryption_configs.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_field_level_encryption_profiles.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_functions.py +143 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_invalidations.py +152 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_invalidations_for_distribution_tenant.py +145 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_key_groups.py +135 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_key_value_stores.py +147 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_origin_access_controls.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_origin_request_policies.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_public_keys.py +135 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_realtime_log_configs.py +149 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_response_headers_policies.py +148 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_streaming_distributions.py +137 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_tags_for_resource.py +142 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_trust_stores.py +145 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/list_vpc_origins.py +146 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/publish_connection_function.py +158 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/publish_function.py +155 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/put_resource_policy.py +157 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/tag_resource.py +121 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/test_connection_function.py +172 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/test_function.py +167 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/untag_resource.py +123 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_anycast_ip_list.py +174 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_cache_policy.py +196 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_cloud_front_origin_access_identity.py +184 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_connection_function.py +179 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_connection_group.py +178 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_continuous_deployment_policy.py +180 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_distribution.py +468 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_distribution_tenant.py +205 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_distribution_with_staging_config.py +444 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_domain_association.py +166 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_field_level_encryption_config.py +198 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_field_level_encryption_profile.py +206 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_function.py +176 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_key_group.py +171 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_key_value_store.py +166 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_origin_access_control.py +178 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_origin_request_policy.py +198 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_public_key.py +176 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_realtime_log_config.py +153 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_response_headers_policy.py +198 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_streaming_distribution.py +211 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_trust_store.py +172 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/update_vpc_origin.py +196 -0
- capo_cloudfront/_operations/cloudfront2020_05_31/verify_dns_configuration.py +141 -0
- capo_cloudfront/_pagination.py +21 -0
- capo_cloudfront/_protocol/__init__.py +1 -0
- capo_cloudfront/_protocol/errors.py +59 -0
- capo_cloudfront/_protocol/eventstream.py +238 -0
- capo_cloudfront/_protocol/xml.py +27 -0
- capo_cloudfront/_rule_engine/__init__.py +0 -0
- capo_cloudfront/_rule_engine/_aws_partition.py +160 -0
- capo_cloudfront/_rule_engine/_endpoint_rule_set.py +272 -0
- capo_cloudfront/_rule_engine/_endpoint_runtime.py +389 -0
- capo_cloudfront/_services/_aws_config.py +152 -0
- capo_cloudfront/_services/_pipeline.py +198 -0
- capo_cloudfront/_services/async_cloud_front.py +9719 -0
- capo_cloudfront/_services/cloud_front.py +9540 -0
- capo_cloudfront/errors/__init__.py +377 -0
- capo_cloudfront/errors/_base.py +94 -0
- capo_cloudfront/errors/access_denied.py +46 -0
- capo_cloudfront/errors/batch_too_large.py +49 -0
- capo_cloudfront/errors/cache_policy_already_exists.py +49 -0
- capo_cloudfront/errors/cache_policy_in_use.py +49 -0
- capo_cloudfront/errors/cannot_change_immutable_public_key_fields.py +51 -0
- capo_cloudfront/errors/cannot_delete_entity_while_in_use.py +51 -0
- capo_cloudfront/errors/cannot_update_entity_while_in_use.py +51 -0
- capo_cloudfront/errors/cloud_front_origin_access_identity_already_exists.py +51 -0
- capo_cloudfront/errors/cloud_front_origin_access_identity_in_use.py +51 -0
- capo_cloudfront/errors/cname_already_exists.py +49 -0
- capo_cloudfront/errors/continuous_deployment_policy_already_exists.py +51 -0
- capo_cloudfront/errors/continuous_deployment_policy_in_use.py +51 -0
- capo_cloudfront/errors/distribution_already_exists.py +49 -0
- capo_cloudfront/errors/distribution_not_disabled.py +49 -0
- capo_cloudfront/errors/entity_already_exists.py +49 -0
- capo_cloudfront/errors/entity_limit_exceeded.py +49 -0
- capo_cloudfront/errors/entity_not_found.py +49 -0
- capo_cloudfront/errors/entity_size_limit_exceeded.py +49 -0
- capo_cloudfront/errors/field_level_encryption_config_already_exists.py +51 -0
- capo_cloudfront/errors/field_level_encryption_config_in_use.py +51 -0
- capo_cloudfront/errors/field_level_encryption_profile_already_exists.py +51 -0
- capo_cloudfront/errors/field_level_encryption_profile_in_use.py +51 -0
- capo_cloudfront/errors/field_level_encryption_profile_size_exceeded.py +51 -0
- capo_cloudfront/errors/function_already_exists.py +49 -0
- capo_cloudfront/errors/function_in_use.py +49 -0
- capo_cloudfront/errors/function_size_limit_exceeded.py +49 -0
- capo_cloudfront/errors/illegal_delete.py +49 -0
- capo_cloudfront/errors/illegal_field_level_encryption_config_association_with_cache_behavior.py +61 -0
- capo_cloudfront/errors/illegal_origin_access_configuration.py +51 -0
- capo_cloudfront/errors/illegal_update.py +49 -0
- capo_cloudfront/errors/inconsistent_quantities.py +49 -0
- capo_cloudfront/errors/invalid_argument.py +49 -0
- capo_cloudfront/errors/invalid_association.py +49 -0
- capo_cloudfront/errors/invalid_default_root_object.py +49 -0
- capo_cloudfront/errors/invalid_domain_name_for_origin_access_control.py +51 -0
- capo_cloudfront/errors/invalid_error_code.py +49 -0
- capo_cloudfront/errors/invalid_forward_cookies.py +49 -0
- capo_cloudfront/errors/invalid_function_association.py +51 -0
- capo_cloudfront/errors/invalid_geo_restriction_parameter.py +51 -0
- capo_cloudfront/errors/invalid_headers_for_s3_origin.py +49 -0
- capo_cloudfront/errors/invalid_if_match_version.py +49 -0
- capo_cloudfront/errors/invalid_lambda_function_association.py +51 -0
- capo_cloudfront/errors/invalid_location_code.py +49 -0
- capo_cloudfront/errors/invalid_minimum_protocol_version.py +51 -0
- capo_cloudfront/errors/invalid_origin.py +49 -0
- capo_cloudfront/errors/invalid_origin_access_control.py +51 -0
- capo_cloudfront/errors/invalid_origin_access_identity.py +51 -0
- capo_cloudfront/errors/invalid_origin_keepalive_timeout.py +51 -0
- capo_cloudfront/errors/invalid_origin_read_timeout.py +49 -0
- capo_cloudfront/errors/invalid_protocol_settings.py +49 -0
- capo_cloudfront/errors/invalid_query_string_parameters.py +51 -0
- capo_cloudfront/errors/invalid_relative_path.py +49 -0
- capo_cloudfront/errors/invalid_required_protocol.py +49 -0
- capo_cloudfront/errors/invalid_response_code.py +49 -0
- capo_cloudfront/errors/invalid_tagging.py +49 -0
- capo_cloudfront/errors/invalid_ttl_order.py +49 -0
- capo_cloudfront/errors/invalid_viewer_certificate.py +49 -0
- capo_cloudfront/errors/invalid_web_acl_id.py +49 -0
- capo_cloudfront/errors/key_group_already_exists.py +49 -0
- capo_cloudfront/errors/missing_body.py +46 -0
- capo_cloudfront/errors/monitoring_subscription_already_exists.py +51 -0
- capo_cloudfront/errors/no_such_cache_policy.py +49 -0
- capo_cloudfront/errors/no_such_cloud_front_origin_access_identity.py +51 -0
- capo_cloudfront/errors/no_such_continuous_deployment_policy.py +51 -0
- capo_cloudfront/errors/no_such_distribution.py +49 -0
- capo_cloudfront/errors/no_such_field_level_encryption_config.py +51 -0
- capo_cloudfront/errors/no_such_field_level_encryption_profile.py +51 -0
- capo_cloudfront/errors/no_such_function_exists.py +49 -0
- capo_cloudfront/errors/no_such_invalidation.py +49 -0
- capo_cloudfront/errors/no_such_monitoring_subscription.py +51 -0
- capo_cloudfront/errors/no_such_origin.py +46 -0
- capo_cloudfront/errors/no_such_origin_access_control.py +49 -0
- capo_cloudfront/errors/no_such_origin_request_policy.py +49 -0
- capo_cloudfront/errors/no_such_public_key.py +49 -0
- capo_cloudfront/errors/no_such_realtime_log_config.py +49 -0
- capo_cloudfront/errors/no_such_resource.py +49 -0
- capo_cloudfront/errors/no_such_response_headers_policy.py +51 -0
- capo_cloudfront/errors/no_such_streaming_distribution.py +51 -0
- capo_cloudfront/errors/origin_access_control_already_exists.py +51 -0
- capo_cloudfront/errors/origin_access_control_in_use.py +49 -0
- capo_cloudfront/errors/origin_request_policy_already_exists.py +51 -0
- capo_cloudfront/errors/origin_request_policy_in_use.py +49 -0
- capo_cloudfront/errors/precondition_failed.py +49 -0
- capo_cloudfront/errors/public_key_already_exists.py +49 -0
- capo_cloudfront/errors/public_key_in_use.py +49 -0
- capo_cloudfront/errors/query_arg_profile_empty.py +49 -0
- capo_cloudfront/errors/realtime_log_config_already_exists.py +51 -0
- capo_cloudfront/errors/realtime_log_config_in_use.py +49 -0
- capo_cloudfront/errors/realtime_log_config_owner_mismatch.py +51 -0
- capo_cloudfront/errors/resource_in_use.py +49 -0
- capo_cloudfront/errors/resource_not_disabled.py +49 -0
- capo_cloudfront/errors/response_headers_policy_already_exists.py +51 -0
- capo_cloudfront/errors/response_headers_policy_in_use.py +51 -0
- capo_cloudfront/errors/staging_distribution_in_use.py +49 -0
- capo_cloudfront/errors/streaming_distribution_already_exists.py +51 -0
- capo_cloudfront/errors/streaming_distribution_not_disabled.py +51 -0
- capo_cloudfront/errors/test_function_failed.py +49 -0
- capo_cloudfront/errors/too_long_csp_in_response_headers_policy.py +51 -0
- capo_cloudfront/errors/too_many_cache_behaviors.py +49 -0
- capo_cloudfront/errors/too_many_cache_policies.py +49 -0
- capo_cloudfront/errors/too_many_certificates.py +49 -0
- capo_cloudfront/errors/too_many_cloud_front_origin_access_identities.py +51 -0
- capo_cloudfront/errors/too_many_continuous_deployment_policies.py +51 -0
- capo_cloudfront/errors/too_many_cookie_names_in_white_list.py +51 -0
- capo_cloudfront/errors/too_many_cookies_in_cache_policy.py +51 -0
- capo_cloudfront/errors/too_many_cookies_in_origin_request_policy.py +51 -0
- capo_cloudfront/errors/too_many_custom_headers_in_response_headers_policy.py +51 -0
- capo_cloudfront/errors/too_many_distribution_cnam_es.py +49 -0
- capo_cloudfront/errors/too_many_distributions.py +49 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_cache_policy.py +51 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_field_level_encryption_config.py +61 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_key_group.py +51 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_origin_access_control.py +57 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_origin_request_policy.py +57 -0
- capo_cloudfront/errors/too_many_distributions_associated_to_response_headers_policy.py +57 -0
- capo_cloudfront/errors/too_many_distributions_with_function_associations.py +51 -0
- capo_cloudfront/errors/too_many_distributions_with_lambda_associations.py +51 -0
- capo_cloudfront/errors/too_many_distributions_with_single_function_arn.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_configs.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_content_type_profiles.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_encryption_entities.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_field_patterns.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_profiles.py +51 -0
- capo_cloudfront/errors/too_many_field_level_encryption_query_arg_profiles.py +51 -0
- capo_cloudfront/errors/too_many_function_associations.py +51 -0
- capo_cloudfront/errors/too_many_functions.py +49 -0
- capo_cloudfront/errors/too_many_headers_in_cache_policy.py +51 -0
- capo_cloudfront/errors/too_many_headers_in_forwarded_values.py +51 -0
- capo_cloudfront/errors/too_many_headers_in_origin_request_policy.py +51 -0
- capo_cloudfront/errors/too_many_invalidations_in_progress.py +51 -0
- capo_cloudfront/errors/too_many_key_groups.py +49 -0
- capo_cloudfront/errors/too_many_key_groups_associated_to_distribution.py +51 -0
- capo_cloudfront/errors/too_many_lambda_function_associations.py +51 -0
- capo_cloudfront/errors/too_many_origin_access_controls.py +51 -0
- capo_cloudfront/errors/too_many_origin_custom_headers.py +51 -0
- capo_cloudfront/errors/too_many_origin_groups_per_distribution.py +51 -0
- capo_cloudfront/errors/too_many_origin_request_policies.py +51 -0
- capo_cloudfront/errors/too_many_origins.py +49 -0
- capo_cloudfront/errors/too_many_public_keys.py +49 -0
- capo_cloudfront/errors/too_many_public_keys_in_key_group.py +51 -0
- capo_cloudfront/errors/too_many_query_string_parameters.py +51 -0
- capo_cloudfront/errors/too_many_query_strings_in_cache_policy.py +51 -0
- capo_cloudfront/errors/too_many_query_strings_in_origin_request_policy.py +51 -0
- capo_cloudfront/errors/too_many_realtime_log_configs.py +49 -0
- capo_cloudfront/errors/too_many_remove_headers_in_response_headers_policy.py +51 -0
- capo_cloudfront/errors/too_many_response_headers_policies.py +51 -0
- capo_cloudfront/errors/too_many_streaming_distribution_cnam_es.py +51 -0
- capo_cloudfront/errors/too_many_streaming_distributions.py +51 -0
- capo_cloudfront/errors/too_many_trusted_signers.py +49 -0
- capo_cloudfront/errors/trusted_key_group_does_not_exist.py +51 -0
- capo_cloudfront/errors/trusted_signer_does_not_exist.py +49 -0
- capo_cloudfront/errors/unsupported_operation.py +49 -0
- capo_cloudfront/py.typed +0 -0
- capo_cloudfront/types/_prelude/blob.py +22 -0
- capo_cloudfront/types/_prelude/timestamp.py +22 -0
- capo_cloudfront/types/access_control_allow_headers_list.py +41 -0
- capo_cloudfront/types/access_control_allow_methods_list.py +63 -0
- capo_cloudfront/types/access_control_allow_origins_list.py +41 -0
- capo_cloudfront/types/access_control_expose_headers_list.py +41 -0
- capo_cloudfront/types/active_trusted_key_groups.py +57 -0
- capo_cloudfront/types/active_trusted_signers.py +53 -0
- capo_cloudfront/types/alias_icp_recordal.py +50 -0
- capo_cloudfront/types/alias_icp_recordals.py +49 -0
- capo_cloudfront/types/alias_list.py +37 -0
- capo_cloudfront/types/alias_string.py +5 -0
- capo_cloudfront/types/aliases.py +44 -0
- capo_cloudfront/types/allowed_methods.py +60 -0
- capo_cloudfront/types/anycast_ip_list.py +132 -0
- capo_cloudfront/types/anycast_ip_list_collection.py +83 -0
- capo_cloudfront/types/anycast_ip_list_name.py +5 -0
- capo_cloudfront/types/anycast_ip_list_summaries.py +51 -0
- capo_cloudfront/types/anycast_ip_list_summary.py +122 -0
- capo_cloudfront/types/anycast_ips.py +37 -0
- capo_cloudfront/types/associate_alias_request.py +27 -0
- capo_cloudfront/types/associate_distribution_tenant_web_acl_request.py +40 -0
- capo_cloudfront/types/associate_distribution_tenant_web_acl_result.py +41 -0
- capo_cloudfront/types/associate_distribution_web_acl_request.py +40 -0
- capo_cloudfront/types/associate_distribution_web_acl_result.py +41 -0
- capo_cloudfront/types/aws_account_number_list.py +37 -0
- capo_cloudfront/types/boolean.py +5 -0
- capo_cloudfront/types/ca_certificates_bundle_s3_location.py +57 -0
- capo_cloudfront/types/ca_certificates_bundle_source.py +52 -0
- capo_cloudfront/types/cache_behavior.py +274 -0
- capo_cloudfront/types/cache_behavior_list.py +47 -0
- capo_cloudfront/types/cache_behaviors.py +48 -0
- capo_cloudfront/types/cache_policy.py +68 -0
- capo_cloudfront/types/cache_policy_config.py +86 -0
- capo_cloudfront/types/cache_policy_cookie_behavior.py +29 -0
- capo_cloudfront/types/cache_policy_cookies_config.py +59 -0
- capo_cloudfront/types/cache_policy_header_behavior.py +27 -0
- capo_cloudfront/types/cache_policy_headers_config.py +55 -0
- capo_cloudfront/types/cache_policy_list.py +66 -0
- capo_cloudfront/types/cache_policy_query_string_behavior.py +31 -0
- capo_cloudfront/types/cache_policy_query_strings_config.py +64 -0
- capo_cloudfront/types/cache_policy_summary.py +55 -0
- capo_cloudfront/types/cache_policy_summary_list.py +51 -0
- capo_cloudfront/types/cache_policy_type.py +27 -0
- capo_cloudfront/types/cache_tag_config.py +32 -0
- capo_cloudfront/types/cached_methods.py +45 -0
- capo_cloudfront/types/certificate.py +32 -0
- capo_cloudfront/types/certificate_source.py +28 -0
- capo_cloudfront/types/certificate_transparency_logging_preference.py +29 -0
- capo_cloudfront/types/cloud_front_origin_access_identity.py +68 -0
- capo_cloudfront/types/cloud_front_origin_access_identity_config.py +46 -0
- capo_cloudfront/types/cloud_front_origin_access_identity_list.py +93 -0
- capo_cloudfront/types/cloud_front_origin_access_identity_summary.py +54 -0
- capo_cloudfront/types/cloud_front_origin_access_identity_summary_list.py +65 -0
- capo_cloudfront/types/comment_type.py +5 -0
- capo_cloudfront/types/conflicting_alias.py +44 -0
- capo_cloudfront/types/conflicting_aliases.py +49 -0
- capo_cloudfront/types/conflicting_aliases_list.py +61 -0
- capo_cloudfront/types/connection_function_association.py +34 -0
- capo_cloudfront/types/connection_function_summary.py +128 -0
- capo_cloudfront/types/connection_function_summary_list.py +59 -0
- capo_cloudfront/types/connection_function_test_result.py +103 -0
- capo_cloudfront/types/connection_group.py +131 -0
- capo_cloudfront/types/connection_group_association_filter.py +32 -0
- capo_cloudfront/types/connection_group_summary.py +126 -0
- capo_cloudfront/types/connection_group_summary_list.py +55 -0
- capo_cloudfront/types/connection_mode.py +27 -0
- capo_cloudfront/types/content_type_profile.py +52 -0
- capo_cloudfront/types/content_type_profile_config.py +60 -0
- capo_cloudfront/types/content_type_profile_list.py +51 -0
- capo_cloudfront/types/content_type_profiles.py +50 -0
- capo_cloudfront/types/continuous_deployment_policy.py +75 -0
- capo_cloudfront/types/continuous_deployment_policy_config.py +71 -0
- capo_cloudfront/types/continuous_deployment_policy_list.py +70 -0
- capo_cloudfront/types/continuous_deployment_policy_summary.py +48 -0
- capo_cloudfront/types/continuous_deployment_policy_summary_list.py +65 -0
- capo_cloudfront/types/continuous_deployment_policy_type.py +29 -0
- capo_cloudfront/types/continuous_deployment_single_header_config.py +46 -0
- capo_cloudfront/types/continuous_deployment_single_weight_config.py +55 -0
- capo_cloudfront/types/cookie_name_list.py +37 -0
- capo_cloudfront/types/cookie_names.py +48 -0
- capo_cloudfront/types/cookie_preference.py +54 -0
- capo_cloudfront/types/copy_distribution_request.py +46 -0
- capo_cloudfront/types/copy_distribution_result.py +42 -0
- capo_cloudfront/types/create_anycast_ip_list_request.py +88 -0
- capo_cloudfront/types/create_anycast_ip_list_result.py +41 -0
- capo_cloudfront/types/create_cache_policy_request.py +44 -0
- capo_cloudfront/types/create_cache_policy_result.py +43 -0
- capo_cloudfront/types/create_cloud_front_origin_access_identity_request.py +50 -0
- capo_cloudfront/types/create_cloud_front_origin_access_identity_result.py +51 -0
- capo_cloudfront/types/create_connection_function_request.py +86 -0
- capo_cloudfront/types/create_connection_function_result.py +49 -0
- capo_cloudfront/types/create_connection_group_request.py +69 -0
- capo_cloudfront/types/create_connection_group_result.py +47 -0
- capo_cloudfront/types/create_continuous_deployment_policy_request.py +50 -0
- capo_cloudfront/types/create_continuous_deployment_policy_result.py +49 -0
- capo_cloudfront/types/create_distribution_request.py +44 -0
- capo_cloudfront/types/create_distribution_result.py +43 -0
- capo_cloudfront/types/create_distribution_tenant_request.py +137 -0
- capo_cloudfront/types/create_distribution_tenant_result.py +47 -0
- capo_cloudfront/types/create_distribution_with_tags_request.py +48 -0
- capo_cloudfront/types/create_distribution_with_tags_result.py +45 -0
- capo_cloudfront/types/create_field_level_encryption_config_request.py +48 -0
- capo_cloudfront/types/create_field_level_encryption_config_result.py +49 -0
- capo_cloudfront/types/create_field_level_encryption_profile_request.py +50 -0
- capo_cloudfront/types/create_field_level_encryption_profile_result.py +49 -0
- capo_cloudfront/types/create_function_request.py +77 -0
- capo_cloudfront/types/create_function_result.py +47 -0
- capo_cloudfront/types/create_invalidation_for_distribution_tenant_request.py +48 -0
- capo_cloudfront/types/create_invalidation_for_distribution_tenant_result.py +42 -0
- capo_cloudfront/types/create_invalidation_request.py +47 -0
- capo_cloudfront/types/create_invalidation_result.py +41 -0
- capo_cloudfront/types/create_key_group_request.py +42 -0
- capo_cloudfront/types/create_key_group_result.py +43 -0
- capo_cloudfront/types/create_key_value_store_request.py +69 -0
- capo_cloudfront/types/create_key_value_store_result.py +43 -0
- capo_cloudfront/types/create_monitoring_subscription_request.py +51 -0
- capo_cloudfront/types/create_monitoring_subscription_result.py +44 -0
- capo_cloudfront/types/create_origin_access_control_request.py +48 -0
- capo_cloudfront/types/create_origin_access_control_result.py +49 -0
- capo_cloudfront/types/create_origin_request_policy_request.py +48 -0
- capo_cloudfront/types/create_origin_request_policy_result.py +49 -0
- capo_cloudfront/types/create_public_key_request.py +42 -0
- capo_cloudfront/types/create_public_key_result.py +43 -0
- capo_cloudfront/types/create_realtime_log_config_request.py +75 -0
- capo_cloudfront/types/create_realtime_log_config_result.py +44 -0
- capo_cloudfront/types/create_response_headers_policy_request.py +46 -0
- capo_cloudfront/types/create_response_headers_policy_result.py +49 -0
- capo_cloudfront/types/create_streaming_distribution_request.py +46 -0
- capo_cloudfront/types/create_streaming_distribution_result.py +49 -0
- capo_cloudfront/types/create_streaming_distribution_with_tags_request.py +50 -0
- capo_cloudfront/types/create_streaming_distribution_with_tags_result.py +49 -0
- capo_cloudfront/types/create_trust_store_request.py +82 -0
- capo_cloudfront/types/create_trust_store_result.py +41 -0
- capo_cloudfront/types/create_vpc_origin_request.py +57 -0
- capo_cloudfront/types/create_vpc_origin_result.py +43 -0
- capo_cloudfront/types/custom_error_response.py +55 -0
- capo_cloudfront/types/custom_error_response_list.py +51 -0
- capo_cloudfront/types/custom_error_responses.py +50 -0
- capo_cloudfront/types/custom_headers.py +50 -0
- capo_cloudfront/types/custom_origin_config.py +133 -0
- capo_cloudfront/types/customization_action_type.py +27 -0
- capo_cloudfront/types/customizations.py +76 -0
- capo_cloudfront/types/default_cache_behavior.py +268 -0
- capo_cloudfront/types/delete_anycast_ip_list_request.py +27 -0
- capo_cloudfront/types/delete_cache_policy_request.py +27 -0
- capo_cloudfront/types/delete_cloud_front_origin_access_identity_request.py +29 -0
- capo_cloudfront/types/delete_connection_function_request.py +30 -0
- capo_cloudfront/types/delete_connection_group_request.py +29 -0
- capo_cloudfront/types/delete_continuous_deployment_policy_request.py +29 -0
- capo_cloudfront/types/delete_distribution_request.py +27 -0
- capo_cloudfront/types/delete_distribution_tenant_request.py +29 -0
- capo_cloudfront/types/delete_field_level_encryption_config_request.py +29 -0
- capo_cloudfront/types/delete_field_level_encryption_profile_request.py +29 -0
- capo_cloudfront/types/delete_function_request.py +28 -0
- capo_cloudfront/types/delete_key_group_request.py +27 -0
- capo_cloudfront/types/delete_key_value_store_request.py +28 -0
- capo_cloudfront/types/delete_monitoring_subscription_request.py +27 -0
- capo_cloudfront/types/delete_monitoring_subscription_result.py +21 -0
- capo_cloudfront/types/delete_origin_access_control_request.py +29 -0
- capo_cloudfront/types/delete_origin_request_policy_request.py +29 -0
- capo_cloudfront/types/delete_public_key_request.py +27 -0
- capo_cloudfront/types/delete_realtime_log_config_request.py +39 -0
- capo_cloudfront/types/delete_resource_policy_request.py +34 -0
- capo_cloudfront/types/delete_response_headers_policy_request.py +29 -0
- capo_cloudfront/types/delete_streaming_distribution_request.py +29 -0
- capo_cloudfront/types/delete_trust_store_request.py +28 -0
- capo_cloudfront/types/delete_vpc_origin_request.py +27 -0
- capo_cloudfront/types/delete_vpc_origin_result.py +41 -0
- capo_cloudfront/types/describe_connection_function_request.py +30 -0
- capo_cloudfront/types/describe_connection_function_result.py +47 -0
- capo_cloudfront/types/describe_function_request.py +28 -0
- capo_cloudfront/types/describe_function_result.py +45 -0
- capo_cloudfront/types/describe_key_value_store_request.py +27 -0
- capo_cloudfront/types/describe_key_value_store_result.py +43 -0
- capo_cloudfront/types/disassociate_distribution_tenant_web_acl_request.py +29 -0
- capo_cloudfront/types/disassociate_distribution_tenant_web_acl_result.py +34 -0
- capo_cloudfront/types/disassociate_distribution_web_acl_request.py +29 -0
- capo_cloudfront/types/disassociate_distribution_web_acl_result.py +34 -0
- capo_cloudfront/types/distribution.py +167 -0
- capo_cloudfront/types/distribution_config.py +374 -0
- capo_cloudfront/types/distribution_config_with_tags.py +57 -0
- capo_cloudfront/types/distribution_id_list.py +85 -0
- capo_cloudfront/types/distribution_id_list_summary.py +39 -0
- capo_cloudfront/types/distribution_id_owner.py +40 -0
- capo_cloudfront/types/distribution_id_owner_item_list.py +53 -0
- capo_cloudfront/types/distribution_id_owner_list.py +85 -0
- capo_cloudfront/types/distribution_id_string.py +5 -0
- capo_cloudfront/types/distribution_list.py +83 -0
- capo_cloudfront/types/distribution_resource_id.py +39 -0
- capo_cloudfront/types/distribution_resource_type.py +27 -0
- capo_cloudfront/types/distribution_summary.py +384 -0
- capo_cloudfront/types/distribution_summary_list.py +51 -0
- capo_cloudfront/types/distribution_tenant.py +163 -0
- capo_cloudfront/types/distribution_tenant_association_filter.py +39 -0
- capo_cloudfront/types/distribution_tenant_list.py +57 -0
- capo_cloudfront/types/distribution_tenant_summary.py +154 -0
- capo_cloudfront/types/dns_configuration.py +56 -0
- capo_cloudfront/types/dns_configuration_list.py +49 -0
- capo_cloudfront/types/dns_configuration_status.py +28 -0
- capo_cloudfront/types/domain_conflict.py +69 -0
- capo_cloudfront/types/domain_conflicts_list.py +47 -0
- capo_cloudfront/types/domain_item.py +32 -0
- capo_cloudfront/types/domain_list.py +45 -0
- capo_cloudfront/types/domain_result.py +46 -0
- capo_cloudfront/types/domain_result_list.py +45 -0
- capo_cloudfront/types/domain_status.py +27 -0
- capo_cloudfront/types/encryption_entities.py +50 -0
- capo_cloudfront/types/encryption_entity.py +57 -0
- capo_cloudfront/types/encryption_entity_list.py +49 -0
- capo_cloudfront/types/end_point.py +52 -0
- capo_cloudfront/types/end_point_list.py +45 -0
- capo_cloudfront/types/event_type.py +29 -0
- capo_cloudfront/types/field_level_encryption.py +72 -0
- capo_cloudfront/types/field_level_encryption_config.py +81 -0
- capo_cloudfront/types/field_level_encryption_list.py +68 -0
- capo_cloudfront/types/field_level_encryption_profile.py +78 -0
- capo_cloudfront/types/field_level_encryption_profile_config.py +72 -0
- capo_cloudfront/types/field_level_encryption_profile_list.py +70 -0
- capo_cloudfront/types/field_level_encryption_profile_summary.py +89 -0
- capo_cloudfront/types/field_level_encryption_profile_summary_list.py +65 -0
- capo_cloudfront/types/field_level_encryption_summary.py +100 -0
- capo_cloudfront/types/field_level_encryption_summary_list.py +59 -0
- capo_cloudfront/types/field_list.py +37 -0
- capo_cloudfront/types/field_pattern_list.py +37 -0
- capo_cloudfront/types/field_patterns.py +48 -0
- capo_cloudfront/types/float.py +5 -0
- capo_cloudfront/types/format.py +24 -0
- capo_cloudfront/types/forwarded_values.py +81 -0
- capo_cloudfront/types/frame_options_list.py +27 -0
- capo_cloudfront/types/function_arn.py +5 -0
- capo_cloudfront/types/function_association.py +47 -0
- capo_cloudfront/types/function_association_list.py +51 -0
- capo_cloudfront/types/function_associations.py +50 -0
- capo_cloudfront/types/function_blob.py +25 -0
- capo_cloudfront/types/function_config.py +69 -0
- capo_cloudfront/types/function_event_object.py +25 -0
- capo_cloudfront/types/function_execution_log_list.py +39 -0
- capo_cloudfront/types/function_list.py +66 -0
- capo_cloudfront/types/function_metadata.py +76 -0
- capo_cloudfront/types/function_name.py +5 -0
- capo_cloudfront/types/function_runtime.py +27 -0
- capo_cloudfront/types/function_stage.py +27 -0
- capo_cloudfront/types/function_summary.py +76 -0
- capo_cloudfront/types/function_summary_list.py +49 -0
- capo_cloudfront/types/geo_restriction.py +63 -0
- capo_cloudfront/types/geo_restriction_customization.py +62 -0
- capo_cloudfront/types/geo_restriction_type.py +28 -0
- capo_cloudfront/types/get_anycast_ip_list_request.py +25 -0
- capo_cloudfront/types/get_anycast_ip_list_result.py +41 -0
- capo_cloudfront/types/get_cache_policy_config_request.py +27 -0
- capo_cloudfront/types/get_cache_policy_config_result.py +45 -0
- capo_cloudfront/types/get_cache_policy_request.py +25 -0
- capo_cloudfront/types/get_cache_policy_result.py +41 -0
- capo_cloudfront/types/get_cloud_front_origin_access_identity_config_request.py +27 -0
- capo_cloudfront/types/get_cloud_front_origin_access_identity_config_result.py +51 -0
- capo_cloudfront/types/get_cloud_front_origin_access_identity_request.py +27 -0
- capo_cloudfront/types/get_cloud_front_origin_access_identity_result.py +49 -0
- capo_cloudfront/types/get_connection_function_request.py +30 -0
- capo_cloudfront/types/get_connection_function_result.py +49 -0
- capo_cloudfront/types/get_connection_group_by_routing_endpoint_request.py +27 -0
- capo_cloudfront/types/get_connection_group_by_routing_endpoint_result.py +46 -0
- capo_cloudfront/types/get_connection_group_request.py +25 -0
- capo_cloudfront/types/get_connection_group_result.py +45 -0
- capo_cloudfront/types/get_continuous_deployment_policy_config_request.py +27 -0
- capo_cloudfront/types/get_continuous_deployment_policy_config_result.py +50 -0
- capo_cloudfront/types/get_continuous_deployment_policy_request.py +27 -0
- capo_cloudfront/types/get_continuous_deployment_policy_result.py +47 -0
- capo_cloudfront/types/get_distribution_config_request.py +27 -0
- capo_cloudfront/types/get_distribution_config_result.py +47 -0
- capo_cloudfront/types/get_distribution_request.py +25 -0
- capo_cloudfront/types/get_distribution_result.py +41 -0
- capo_cloudfront/types/get_distribution_tenant_by_domain_request.py +27 -0
- capo_cloudfront/types/get_distribution_tenant_by_domain_result.py +46 -0
- capo_cloudfront/types/get_distribution_tenant_request.py +27 -0
- capo_cloudfront/types/get_distribution_tenant_result.py +47 -0
- capo_cloudfront/types/get_field_level_encryption_config_request.py +27 -0
- capo_cloudfront/types/get_field_level_encryption_config_result.py +47 -0
- capo_cloudfront/types/get_field_level_encryption_profile_config_request.py +27 -0
- capo_cloudfront/types/get_field_level_encryption_profile_config_result.py +51 -0
- capo_cloudfront/types/get_field_level_encryption_profile_request.py +27 -0
- capo_cloudfront/types/get_field_level_encryption_profile_result.py +47 -0
- capo_cloudfront/types/get_field_level_encryption_request.py +27 -0
- capo_cloudfront/types/get_field_level_encryption_result.py +47 -0
- capo_cloudfront/types/get_function_request.py +28 -0
- capo_cloudfront/types/get_function_result.py +43 -0
- capo_cloudfront/types/get_invalidation_for_distribution_tenant_request.py +29 -0
- capo_cloudfront/types/get_invalidation_for_distribution_tenant_result.py +39 -0
- capo_cloudfront/types/get_invalidation_request.py +27 -0
- capo_cloudfront/types/get_invalidation_result.py +38 -0
- capo_cloudfront/types/get_key_group_config_request.py +25 -0
- capo_cloudfront/types/get_key_group_config_result.py +45 -0
- capo_cloudfront/types/get_key_group_request.py +25 -0
- capo_cloudfront/types/get_key_group_result.py +41 -0
- capo_cloudfront/types/get_managed_certificate_details_request.py +27 -0
- capo_cloudfront/types/get_managed_certificate_details_result.py +44 -0
- capo_cloudfront/types/get_monitoring_subscription_request.py +27 -0
- capo_cloudfront/types/get_monitoring_subscription_result.py +44 -0
- capo_cloudfront/types/get_origin_access_control_config_request.py +27 -0
- capo_cloudfront/types/get_origin_access_control_config_result.py +47 -0
- capo_cloudfront/types/get_origin_access_control_request.py +27 -0
- capo_cloudfront/types/get_origin_access_control_result.py +47 -0
- capo_cloudfront/types/get_origin_request_policy_config_request.py +27 -0
- capo_cloudfront/types/get_origin_request_policy_config_result.py +47 -0
- capo_cloudfront/types/get_origin_request_policy_request.py +27 -0
- capo_cloudfront/types/get_origin_request_policy_result.py +47 -0
- capo_cloudfront/types/get_public_key_config_request.py +25 -0
- capo_cloudfront/types/get_public_key_config_result.py +45 -0
- capo_cloudfront/types/get_public_key_request.py +25 -0
- capo_cloudfront/types/get_public_key_result.py +41 -0
- capo_cloudfront/types/get_realtime_log_config_request.py +39 -0
- capo_cloudfront/types/get_realtime_log_config_result.py +42 -0
- capo_cloudfront/types/get_resource_policy_request.py +32 -0
- capo_cloudfront/types/get_resource_policy_result.py +37 -0
- capo_cloudfront/types/get_response_headers_policy_config_request.py +27 -0
- capo_cloudfront/types/get_response_headers_policy_config_result.py +47 -0
- capo_cloudfront/types/get_response_headers_policy_request.py +27 -0
- capo_cloudfront/types/get_response_headers_policy_result.py +47 -0
- capo_cloudfront/types/get_streaming_distribution_config_request.py +27 -0
- capo_cloudfront/types/get_streaming_distribution_config_result.py +47 -0
- capo_cloudfront/types/get_streaming_distribution_request.py +27 -0
- capo_cloudfront/types/get_streaming_distribution_result.py +47 -0
- capo_cloudfront/types/get_trust_store_request.py +25 -0
- capo_cloudfront/types/get_trust_store_result.py +41 -0
- capo_cloudfront/types/get_vpc_origin_request.py +25 -0
- capo_cloudfront/types/get_vpc_origin_result.py +41 -0
- capo_cloudfront/types/grpc_config.py +32 -0
- capo_cloudfront/types/header_list.py +37 -0
- capo_cloudfront/types/headers.py +44 -0
- capo_cloudfront/types/http_version.py +29 -0
- capo_cloudfront/types/icp_recordal_status.py +28 -0
- capo_cloudfront/types/import_source.py +49 -0
- capo_cloudfront/types/import_source_type.py +24 -0
- capo_cloudfront/types/integer.py +5 -0
- capo_cloudfront/types/invalidation.py +76 -0
- capo_cloudfront/types/invalidation_batch.py +45 -0
- capo_cloudfront/types/invalidation_list.py +83 -0
- capo_cloudfront/types/invalidation_summary.py +57 -0
- capo_cloudfront/types/invalidation_summary_list.py +51 -0
- capo_cloudfront/types/ip_address_type.py +28 -0
- capo_cloudfront/types/ipam_cidr_config.py +63 -0
- capo_cloudfront/types/ipam_cidr_config_list.py +47 -0
- capo_cloudfront/types/ipam_cidr_status.py +37 -0
- capo_cloudfront/types/ipam_config.py +51 -0
- capo_cloudfront/types/item_selection.py +28 -0
- capo_cloudfront/types/key_group.py +68 -0
- capo_cloudfront/types/key_group_config.py +54 -0
- capo_cloudfront/types/key_group_list.py +66 -0
- capo_cloudfront/types/key_group_summary.py +38 -0
- capo_cloudfront/types/key_group_summary_list.py +49 -0
- capo_cloudfront/types/key_pair_id_list.py +37 -0
- capo_cloudfront/types/key_pair_ids.py +48 -0
- capo_cloudfront/types/key_value_store.py +80 -0
- capo_cloudfront/types/key_value_store_arn.py +5 -0
- capo_cloudfront/types/key_value_store_association.py +34 -0
- capo_cloudfront/types/key_value_store_association_list.py +59 -0
- capo_cloudfront/types/key_value_store_associations.py +52 -0
- capo_cloudfront/types/key_value_store_comment.py +5 -0
- capo_cloudfront/types/key_value_store_list.py +68 -0
- capo_cloudfront/types/key_value_store_name.py +5 -0
- capo_cloudfront/types/key_value_store_summary_list.py +49 -0
- capo_cloudfront/types/kg_key_pair_ids.py +45 -0
- capo_cloudfront/types/kg_key_pair_ids_list.py +45 -0
- capo_cloudfront/types/kinesis_stream_config.py +40 -0
- capo_cloudfront/types/lambda_function_arn.py +5 -0
- capo_cloudfront/types/lambda_function_association.py +59 -0
- capo_cloudfront/types/lambda_function_association_list.py +59 -0
- capo_cloudfront/types/lambda_function_associations.py +52 -0
- capo_cloudfront/types/list_anycast_ip_lists_request.py +28 -0
- capo_cloudfront/types/list_anycast_ip_lists_result.py +42 -0
- capo_cloudfront/types/list_cache_policies_request.py +31 -0
- capo_cloudfront/types/list_cache_policies_result.py +42 -0
- capo_cloudfront/types/list_cloud_front_origin_access_identities_request.py +30 -0
- capo_cloudfront/types/list_cloud_front_origin_access_identities_result.py +48 -0
- capo_cloudfront/types/list_conflicting_aliases_max_items_integer.py +5 -0
- capo_cloudfront/types/list_conflicting_aliases_request.py +38 -0
- capo_cloudfront/types/list_conflicting_aliases_result.py +44 -0
- capo_cloudfront/types/list_connection_functions_request.py +52 -0
- capo_cloudfront/types/list_connection_functions_result.py +52 -0
- capo_cloudfront/types/list_connection_groups_request.py +60 -0
- capo_cloudfront/types/list_connection_groups_result.py +50 -0
- capo_cloudfront/types/list_continuous_deployment_policies_request.py +30 -0
- capo_cloudfront/types/list_continuous_deployment_policies_result.py +46 -0
- capo_cloudfront/types/list_distribution_tenants_by_customization_request.py +54 -0
- capo_cloudfront/types/list_distribution_tenants_by_customization_result.py +52 -0
- capo_cloudfront/types/list_distribution_tenants_request.py +59 -0
- capo_cloudfront/types/list_distribution_tenants_result.py +52 -0
- capo_cloudfront/types/list_distributions_by_anycast_ip_list_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_anycast_ip_list_id_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_cache_policy_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_cache_policy_id_result.py +44 -0
- capo_cloudfront/types/list_distributions_by_connection_function_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_connection_function_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_connection_mode_request.py +33 -0
- capo_cloudfront/types/list_distributions_by_connection_mode_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_key_group_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_key_group_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_origin_request_policy_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_origin_request_policy_id_result.py +44 -0
- capo_cloudfront/types/list_distributions_by_owned_resource_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_owned_resource_result.py +44 -0
- capo_cloudfront/types/list_distributions_by_realtime_log_config_request.py +58 -0
- capo_cloudfront/types/list_distributions_by_realtime_log_config_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_response_headers_policy_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_response_headers_policy_id_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_trust_store_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_trust_store_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_vpc_origin_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_vpc_origin_id_result.py +43 -0
- capo_cloudfront/types/list_distributions_by_web_acl_id_request.py +32 -0
- capo_cloudfront/types/list_distributions_by_web_acl_id_result.py +44 -0
- capo_cloudfront/types/list_distributions_request.py +28 -0
- capo_cloudfront/types/list_distributions_result.py +42 -0
- capo_cloudfront/types/list_domain_conflicts_request.py +74 -0
- capo_cloudfront/types/list_domain_conflicts_result.py +50 -0
- capo_cloudfront/types/list_field_level_encryption_configs_request.py +30 -0
- capo_cloudfront/types/list_field_level_encryption_configs_result.py +44 -0
- capo_cloudfront/types/list_field_level_encryption_profiles_request.py +30 -0
- capo_cloudfront/types/list_field_level_encryption_profiles_result.py +48 -0
- capo_cloudfront/types/list_functions_request.py +31 -0
- capo_cloudfront/types/list_functions_result.py +38 -0
- capo_cloudfront/types/list_invalidations_for_distribution_tenant_request.py +32 -0
- capo_cloudfront/types/list_invalidations_for_distribution_tenant_result.py +43 -0
- capo_cloudfront/types/list_invalidations_request.py +30 -0
- capo_cloudfront/types/list_invalidations_result.py +42 -0
- capo_cloudfront/types/list_key_groups_request.py +28 -0
- capo_cloudfront/types/list_key_groups_result.py +38 -0
- capo_cloudfront/types/list_key_value_stores_request.py +30 -0
- capo_cloudfront/types/list_key_value_stores_result.py +42 -0
- capo_cloudfront/types/list_origin_access_controls_request.py +30 -0
- capo_cloudfront/types/list_origin_access_controls_result.py +44 -0
- capo_cloudfront/types/list_origin_request_policies_request.py +35 -0
- capo_cloudfront/types/list_origin_request_policies_result.py +44 -0
- capo_cloudfront/types/list_public_keys_request.py +28 -0
- capo_cloudfront/types/list_public_keys_result.py +38 -0
- capo_cloudfront/types/list_realtime_log_configs_request.py +30 -0
- capo_cloudfront/types/list_realtime_log_configs_result.py +44 -0
- capo_cloudfront/types/list_response_headers_policies_request.py +35 -0
- capo_cloudfront/types/list_response_headers_policies_result.py +44 -0
- capo_cloudfront/types/list_streaming_distributions_request.py +30 -0
- capo_cloudfront/types/list_streaming_distributions_result.py +44 -0
- capo_cloudfront/types/list_tags_for_resource_request.py +25 -0
- capo_cloudfront/types/list_tags_for_resource_result.py +36 -0
- capo_cloudfront/types/list_trust_stores_request.py +38 -0
- capo_cloudfront/types/list_trust_stores_result.py +50 -0
- capo_cloudfront/types/list_vpc_origins_request.py +28 -0
- capo_cloudfront/types/list_vpc_origins_result.py +38 -0
- capo_cloudfront/types/location_list.py +37 -0
- capo_cloudfront/types/logging_config.py +58 -0
- capo_cloudfront/types/long.py +5 -0
- capo_cloudfront/types/managed_certificate_details.py +90 -0
- capo_cloudfront/types/managed_certificate_request.py +78 -0
- capo_cloudfront/types/managed_certificate_status.py +32 -0
- capo_cloudfront/types/method.py +32 -0
- capo_cloudfront/types/methods_list.py +45 -0
- capo_cloudfront/types/minimum_protocol_version.py +34 -0
- capo_cloudfront/types/monitoring_subscription.py +46 -0
- capo_cloudfront/types/origin.py +174 -0
- capo_cloudfront/types/origin_access_control.py +52 -0
- capo_cloudfront/types/origin_access_control_config.py +102 -0
- capo_cloudfront/types/origin_access_control_list.py +85 -0
- capo_cloudfront/types/origin_access_control_origin_types.py +31 -0
- capo_cloudfront/types/origin_access_control_signing_behaviors.py +30 -0
- capo_cloudfront/types/origin_access_control_signing_protocols.py +26 -0
- capo_cloudfront/types/origin_access_control_summary.py +111 -0
- capo_cloudfront/types/origin_access_control_summary_list.py +59 -0
- capo_cloudfront/types/origin_custom_header.py +41 -0
- capo_cloudfront/types/origin_custom_headers_list.py +51 -0
- capo_cloudfront/types/origin_group.py +88 -0
- capo_cloudfront/types/origin_group_failover_criteria.py +42 -0
- capo_cloudfront/types/origin_group_list.py +45 -0
- capo_cloudfront/types/origin_group_member.py +32 -0
- capo_cloudfront/types/origin_group_member_list.py +49 -0
- capo_cloudfront/types/origin_group_members.py +49 -0
- capo_cloudfront/types/origin_group_selection_criteria.py +29 -0
- capo_cloudfront/types/origin_groups.py +48 -0
- capo_cloudfront/types/origin_list.py +45 -0
- capo_cloudfront/types/origin_mtls_config.py +32 -0
- capo_cloudfront/types/origin_protocol_policy.py +28 -0
- capo_cloudfront/types/origin_request_policy.py +72 -0
- capo_cloudfront/types/origin_request_policy_config.py +98 -0
- capo_cloudfront/types/origin_request_policy_cookie_behavior.py +31 -0
- capo_cloudfront/types/origin_request_policy_cookies_config.py +61 -0
- capo_cloudfront/types/origin_request_policy_header_behavior.py +32 -0
- capo_cloudfront/types/origin_request_policy_headers_config.py +57 -0
- capo_cloudfront/types/origin_request_policy_list.py +68 -0
- capo_cloudfront/types/origin_request_policy_query_string_behavior.py +31 -0
- capo_cloudfront/types/origin_request_policy_query_strings_config.py +64 -0
- capo_cloudfront/types/origin_request_policy_summary.py +63 -0
- capo_cloudfront/types/origin_request_policy_summary_list.py +59 -0
- capo_cloudfront/types/origin_request_policy_type.py +27 -0
- capo_cloudfront/types/origin_shield.py +42 -0
- capo_cloudfront/types/origin_shield_region.py +5 -0
- capo_cloudfront/types/origin_ssl_protocols.py +47 -0
- capo_cloudfront/types/origins.py +45 -0
- capo_cloudfront/types/parameter.py +41 -0
- capo_cloudfront/types/parameter_definition.py +53 -0
- capo_cloudfront/types/parameter_definition_schema.py +42 -0
- capo_cloudfront/types/parameter_definitions.py +47 -0
- capo_cloudfront/types/parameter_name.py +5 -0
- capo_cloudfront/types/parameter_value.py +5 -0
- capo_cloudfront/types/parameters.py +45 -0
- capo_cloudfront/types/parameters_in_cache_key_and_forwarded_to_origin.py +118 -0
- capo_cloudfront/types/path_list.py +37 -0
- capo_cloudfront/types/paths.py +44 -0
- capo_cloudfront/types/price_class.py +29 -0
- capo_cloudfront/types/public_key.py +68 -0
- capo_cloudfront/types/public_key_config.py +55 -0
- capo_cloudfront/types/public_key_id_list.py +37 -0
- capo_cloudfront/types/public_key_list.py +66 -0
- capo_cloudfront/types/public_key_summary.py +72 -0
- capo_cloudfront/types/public_key_summary_list.py +49 -0
- capo_cloudfront/types/publish_connection_function_request.py +30 -0
- capo_cloudfront/types/publish_connection_function_result.py +44 -0
- capo_cloudfront/types/publish_function_request.py +28 -0
- capo_cloudfront/types/publish_function_result.py +42 -0
- capo_cloudfront/types/put_resource_policy_request.py +40 -0
- capo_cloudfront/types/put_resource_policy_result.py +30 -0
- capo_cloudfront/types/query_arg_profile.py +40 -0
- capo_cloudfront/types/query_arg_profile_config.py +60 -0
- capo_cloudfront/types/query_arg_profile_list.py +49 -0
- capo_cloudfront/types/query_arg_profiles.py +50 -0
- capo_cloudfront/types/query_string_cache_keys.py +52 -0
- capo_cloudfront/types/query_string_cache_keys_list.py +39 -0
- capo_cloudfront/types/query_string_names.py +50 -0
- capo_cloudfront/types/query_string_names_list.py +37 -0
- capo_cloudfront/types/realtime_log_config.py +79 -0
- capo_cloudfront/types/realtime_log_config_list.py +47 -0
- capo_cloudfront/types/realtime_log_configs.py +75 -0
- capo_cloudfront/types/realtime_metrics_subscription_config.py +50 -0
- capo_cloudfront/types/realtime_metrics_subscription_status.py +29 -0
- capo_cloudfront/types/referrer_policy_list.py +33 -0
- capo_cloudfront/types/resource_arn.py +5 -0
- capo_cloudfront/types/resource_id.py +5 -0
- capo_cloudfront/types/response_headers_policy.py +70 -0
- capo_cloudfront/types/response_headers_policy_access_control_allow_headers.py +57 -0
- capo_cloudfront/types/response_headers_policy_access_control_allow_methods.py +57 -0
- capo_cloudfront/types/response_headers_policy_access_control_allow_methods_values.py +39 -0
- capo_cloudfront/types/response_headers_policy_access_control_allow_origins.py +57 -0
- capo_cloudfront/types/response_headers_policy_access_control_expose_headers.py +56 -0
- capo_cloudfront/types/response_headers_policy_config.py +141 -0
- capo_cloudfront/types/response_headers_policy_content_security_policy.py +47 -0
- capo_cloudfront/types/response_headers_policy_content_type_options.py +36 -0
- capo_cloudfront/types/response_headers_policy_cors_config.py +147 -0
- capo_cloudfront/types/response_headers_policy_custom_header.py +53 -0
- capo_cloudfront/types/response_headers_policy_custom_header_list.py +65 -0
- capo_cloudfront/types/response_headers_policy_custom_headers_config.py +56 -0
- capo_cloudfront/types/response_headers_policy_frame_options.py +55 -0
- capo_cloudfront/types/response_headers_policy_list.py +68 -0
- capo_cloudfront/types/response_headers_policy_referrer_policy.py +57 -0
- capo_cloudfront/types/response_headers_policy_remove_header.py +34 -0
- capo_cloudfront/types/response_headers_policy_remove_header_list.py +65 -0
- capo_cloudfront/types/response_headers_policy_remove_headers_config.py +56 -0
- capo_cloudfront/types/response_headers_policy_security_headers_config.py +144 -0
- capo_cloudfront/types/response_headers_policy_server_timing_headers_config.py +44 -0
- capo_cloudfront/types/response_headers_policy_strict_transport_security.py +69 -0
- capo_cloudfront/types/response_headers_policy_summary.py +67 -0
- capo_cloudfront/types/response_headers_policy_summary_list.py +59 -0
- capo_cloudfront/types/response_headers_policy_type.py +27 -0
- capo_cloudfront/types/response_headers_policy_xss_protection.py +61 -0
- capo_cloudfront/types/restrictions.py +40 -0
- capo_cloudfront/types/s3_origin.py +40 -0
- capo_cloudfront/types/s3_origin_config.py +41 -0
- capo_cloudfront/types/sampling_rate.py +5 -0
- capo_cloudfront/types/sensitive_string_type.py +5 -0
- capo_cloudfront/types/server_certificate_id.py +5 -0
- capo_cloudfront/types/session_stickiness_config.py +40 -0
- capo_cloudfront/types/signer.py +46 -0
- capo_cloudfront/types/signer_list.py +45 -0
- capo_cloudfront/types/ssl_protocol.py +29 -0
- capo_cloudfront/types/ssl_protocols_list.py +45 -0
- capo_cloudfront/types/ssl_support_method.py +28 -0
- capo_cloudfront/types/staging_distribution_dns_name_list.py +41 -0
- capo_cloudfront/types/staging_distribution_dns_names.py +54 -0
- capo_cloudfront/types/status_code_list.py +37 -0
- capo_cloudfront/types/status_codes.py +47 -0
- capo_cloudfront/types/streaming_distribution.py +116 -0
- capo_cloudfront/types/streaming_distribution_config.py +133 -0
- capo_cloudfront/types/streaming_distribution_config_with_tags.py +59 -0
- capo_cloudfront/types/streaming_distribution_list.py +85 -0
- capo_cloudfront/types/streaming_distribution_summary.py +158 -0
- capo_cloudfront/types/streaming_distribution_summary_list.py +59 -0
- capo_cloudfront/types/streaming_logging_config.py +49 -0
- capo_cloudfront/types/string.py +5 -0
- capo_cloudfront/types/string_schema_config.py +50 -0
- capo_cloudfront/types/tag.py +40 -0
- capo_cloudfront/types/tag_key.py +6 -0
- capo_cloudfront/types/tag_key_list.py +37 -0
- capo_cloudfront/types/tag_keys.py +34 -0
- capo_cloudfront/types/tag_list.py +45 -0
- capo_cloudfront/types/tag_resource_request.py +39 -0
- capo_cloudfront/types/tag_value.py +5 -0
- capo_cloudfront/types/tags.py +34 -0
- capo_cloudfront/types/tenant_config.py +42 -0
- capo_cloudfront/types/test_connection_function_request.py +64 -0
- capo_cloudfront/types/test_connection_function_result.py +44 -0
- capo_cloudfront/types/test_function_request.py +60 -0
- capo_cloudfront/types/test_function_result.py +38 -0
- capo_cloudfront/types/test_result.py +91 -0
- capo_cloudfront/types/timestamp.py +25 -0
- capo_cloudfront/types/traffic_config.py +82 -0
- capo_cloudfront/types/trust_store.py +111 -0
- capo_cloudfront/types/trust_store_config.py +55 -0
- capo_cloudfront/types/trust_store_list.py +49 -0
- capo_cloudfront/types/trust_store_status.py +28 -0
- capo_cloudfront/types/trust_store_summary.py +112 -0
- capo_cloudfront/types/trusted_key_group_id_list.py +37 -0
- capo_cloudfront/types/trusted_key_groups.py +59 -0
- capo_cloudfront/types/trusted_signers.py +59 -0
- capo_cloudfront/types/untag_resource_request.py +39 -0
- capo_cloudfront/types/update_anycast_ip_list_request.py +63 -0
- capo_cloudfront/types/update_anycast_ip_list_result.py +40 -0
- capo_cloudfront/types/update_cache_policy_request.py +49 -0
- capo_cloudfront/types/update_cache_policy_result.py +41 -0
- capo_cloudfront/types/update_cloud_front_origin_access_identity_request.py +55 -0
- capo_cloudfront/types/update_cloud_front_origin_access_identity_result.py +49 -0
- capo_cloudfront/types/update_connection_function_request.py +72 -0
- capo_cloudfront/types/update_connection_function_result.py +47 -0
- capo_cloudfront/types/update_connection_group_request.py +53 -0
- capo_cloudfront/types/update_connection_group_result.py +47 -0
- capo_cloudfront/types/update_continuous_deployment_policy_request.py +55 -0
- capo_cloudfront/types/update_continuous_deployment_policy_result.py +47 -0
- capo_cloudfront/types/update_distribution_request.py +49 -0
- capo_cloudfront/types/update_distribution_result.py +41 -0
- capo_cloudfront/types/update_distribution_tenant_request.py +117 -0
- capo_cloudfront/types/update_distribution_tenant_result.py +47 -0
- capo_cloudfront/types/update_distribution_with_staging_config_request.py +31 -0
- capo_cloudfront/types/update_distribution_with_staging_config_result.py +42 -0
- capo_cloudfront/types/update_domain_association_request.py +59 -0
- capo_cloudfront/types/update_domain_association_result.py +41 -0
- capo_cloudfront/types/update_field_level_encryption_config_request.py +53 -0
- capo_cloudfront/types/update_field_level_encryption_config_result.py +47 -0
- capo_cloudfront/types/update_field_level_encryption_profile_request.py +55 -0
- capo_cloudfront/types/update_field_level_encryption_profile_result.py +47 -0
- capo_cloudfront/types/update_function_request.py +63 -0
- capo_cloudfront/types/update_function_result.py +45 -0
- capo_cloudfront/types/update_key_group_request.py +47 -0
- capo_cloudfront/types/update_key_group_result.py +41 -0
- capo_cloudfront/types/update_key_value_store_request.py +38 -0
- capo_cloudfront/types/update_key_value_store_result.py +41 -0
- capo_cloudfront/types/update_origin_access_control_request.py +53 -0
- capo_cloudfront/types/update_origin_access_control_result.py +47 -0
- capo_cloudfront/types/update_origin_request_policy_request.py +53 -0
- capo_cloudfront/types/update_origin_request_policy_result.py +47 -0
- capo_cloudfront/types/update_public_key_request.py +47 -0
- capo_cloudfront/types/update_public_key_result.py +41 -0
- capo_cloudfront/types/update_realtime_log_config_request.py +75 -0
- capo_cloudfront/types/update_realtime_log_config_result.py +44 -0
- capo_cloudfront/types/update_response_headers_policy_request.py +51 -0
- capo_cloudfront/types/update_response_headers_policy_result.py +47 -0
- capo_cloudfront/types/update_streaming_distribution_request.py +51 -0
- capo_cloudfront/types/update_streaming_distribution_result.py +47 -0
- capo_cloudfront/types/update_trust_store_request.py +53 -0
- capo_cloudfront/types/update_trust_store_result.py +41 -0
- capo_cloudfront/types/update_vpc_origin_request.py +51 -0
- capo_cloudfront/types/update_vpc_origin_result.py +41 -0
- capo_cloudfront/types/validation_token_detail.py +46 -0
- capo_cloudfront/types/validation_token_detail_list.py +49 -0
- capo_cloudfront/types/validation_token_host.py +27 -0
- capo_cloudfront/types/verify_dns_configuration_request.py +41 -0
- capo_cloudfront/types/verify_dns_configuration_result.py +44 -0
- capo_cloudfront/types/viewer_certificate.py +121 -0
- capo_cloudfront/types/viewer_mtls_config.py +57 -0
- capo_cloudfront/types/viewer_mtls_mode.py +28 -0
- capo_cloudfront/types/viewer_protocol_policy.py +28 -0
- capo_cloudfront/types/vpc_origin.py +109 -0
- capo_cloudfront/types/vpc_origin_config.py +56 -0
- capo_cloudfront/types/vpc_origin_endpoint_config.py +99 -0
- capo_cloudfront/types/vpc_origin_list.py +83 -0
- capo_cloudfront/types/vpc_origin_summary.py +104 -0
- capo_cloudfront/types/vpc_origin_summary_list.py +49 -0
- capo_cloudfront/types/web_acl_customization.py +48 -0
- capo_cloudfront-0.2.0.dist-info/METADATA +98 -0
- capo_cloudfront-0.2.0.dist-info/RECORD +1020 -0
- capo_cloudfront-0.2.0.dist-info/WHEEL +5 -0
- capo_cloudfront-0.2.0.dist-info/licenses/LICENSE +21 -0
- capo_cloudfront-0.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CreateTrustStoreRequest``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.boolean
|
|
12
|
+
import capo_cloudfront.types.ca_certificates_bundle_source
|
|
13
|
+
import capo_cloudfront.types.string
|
|
14
|
+
import capo_cloudfront.types.tags
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class CreateTrustStoreRequest(TypedDict, closed=True):
|
|
18
|
+
name: "capo_cloudfront.types.string.string"
|
|
19
|
+
"""<p>A name for the trust store.</p>"""
|
|
20
|
+
ca_certificates_bundle_source: (
|
|
21
|
+
"capo_cloudfront.types.ca_certificates_bundle_source.CaCertificatesBundleSource"
|
|
22
|
+
)
|
|
23
|
+
"""<p>The CA certificates bundle source for the trust store.</p>"""
|
|
24
|
+
use_client_certificate_ocsp_endpoint: NotRequired[
|
|
25
|
+
"capo_cloudfront.types.boolean.boolean"
|
|
26
|
+
]
|
|
27
|
+
"""<p>A Boolean that determines whether to use the CA certificate's OCSP endpoint to check certificate revocation status.</p>"""
|
|
28
|
+
tags: NotRequired["capo_cloudfront.types.tags.Tags"]
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
# --- restXml ser/de ---
|
|
32
|
+
def serialize_xml(value: CreateTrustStoreRequest, parent: Element, tag: str) -> None:
|
|
33
|
+
el = SubElement(parent, tag)
|
|
34
|
+
SubElement(el, "Name").text = str(value["name"])
|
|
35
|
+
import capo_cloudfront.types.ca_certificates_bundle_source
|
|
36
|
+
|
|
37
|
+
capo_cloudfront.types.ca_certificates_bundle_source.serialize_xml(
|
|
38
|
+
value["ca_certificates_bundle_source"], el, "CaCertificatesBundleSource"
|
|
39
|
+
)
|
|
40
|
+
if "use_client_certificate_ocsp_endpoint" in value:
|
|
41
|
+
SubElement(el, "UseClientCertificateOCSPEndpoint").text = (
|
|
42
|
+
"true" if value["use_client_certificate_ocsp_endpoint"] else "false"
|
|
43
|
+
)
|
|
44
|
+
if "tags" in value:
|
|
45
|
+
import capo_cloudfront.types.tags
|
|
46
|
+
|
|
47
|
+
capo_cloudfront.types.tags.serialize_xml(value["tags"], el, "Tags")
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def deserialize_xml(el: Element) -> CreateTrustStoreRequest:
|
|
51
|
+
out: CreateTrustStoreRequest = {} # type: ignore[typeddict-item]
|
|
52
|
+
child_name = el.find("Name")
|
|
53
|
+
if child_name is not None:
|
|
54
|
+
out["name"] = str(child_name.text or "")
|
|
55
|
+
else:
|
|
56
|
+
raise DeserializationError("CreateTrustStoreRequest.name required")
|
|
57
|
+
child_ca_certificates_bundle_source = el.find("CaCertificatesBundleSource")
|
|
58
|
+
if child_ca_certificates_bundle_source is not None:
|
|
59
|
+
import capo_cloudfront.types.ca_certificates_bundle_source
|
|
60
|
+
|
|
61
|
+
out["ca_certificates_bundle_source"] = (
|
|
62
|
+
capo_cloudfront.types.ca_certificates_bundle_source.deserialize_xml(
|
|
63
|
+
child_ca_certificates_bundle_source
|
|
64
|
+
)
|
|
65
|
+
)
|
|
66
|
+
else:
|
|
67
|
+
raise DeserializationError(
|
|
68
|
+
"CreateTrustStoreRequest.ca_certificates_bundle_source required"
|
|
69
|
+
)
|
|
70
|
+
child_use_client_certificate_ocsp_endpoint = el.find(
|
|
71
|
+
"UseClientCertificateOCSPEndpoint"
|
|
72
|
+
)
|
|
73
|
+
if child_use_client_certificate_ocsp_endpoint is not None:
|
|
74
|
+
out["use_client_certificate_ocsp_endpoint"] = (
|
|
75
|
+
child_use_client_certificate_ocsp_endpoint.text or ""
|
|
76
|
+
).lower() == "true"
|
|
77
|
+
child_tags = el.find("Tags")
|
|
78
|
+
if child_tags is not None:
|
|
79
|
+
import capo_cloudfront.types.tags
|
|
80
|
+
|
|
81
|
+
out["tags"] = capo_cloudfront.types.tags.deserialize_xml(child_tags)
|
|
82
|
+
return out
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CreateTrustStoreResult``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
|
|
9
|
+
if TYPE_CHECKING:
|
|
10
|
+
import capo_cloudfront.types.string
|
|
11
|
+
import capo_cloudfront.types.trust_store
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class CreateTrustStoreResult(TypedDict, closed=True):
|
|
15
|
+
trust_store: NotRequired["capo_cloudfront.types.trust_store.TrustStore"]
|
|
16
|
+
"""<p>The trust store.</p>"""
|
|
17
|
+
e_tag: NotRequired["capo_cloudfront.types.string.string"]
|
|
18
|
+
"""<p>The version identifier for the current version of the trust store.</p>"""
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
# --- restXml ser/de ---
|
|
22
|
+
def serialize_xml(value: CreateTrustStoreResult, parent: Element, tag: str) -> None:
|
|
23
|
+
el = SubElement(parent, tag)
|
|
24
|
+
if "trust_store" in value:
|
|
25
|
+
import capo_cloudfront.types.trust_store
|
|
26
|
+
|
|
27
|
+
capo_cloudfront.types.trust_store.serialize_xml(
|
|
28
|
+
value["trust_store"], el, "TrustStore"
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def deserialize_xml(el: Element) -> CreateTrustStoreResult:
|
|
33
|
+
out: CreateTrustStoreResult = {} # type: ignore[typeddict-item]
|
|
34
|
+
child_trust_store = el.find("TrustStore")
|
|
35
|
+
if child_trust_store is not None:
|
|
36
|
+
import capo_cloudfront.types.trust_store
|
|
37
|
+
|
|
38
|
+
out["trust_store"] = capo_cloudfront.types.trust_store.deserialize_xml(
|
|
39
|
+
child_trust_store
|
|
40
|
+
)
|
|
41
|
+
return out
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CreateVpcOriginRequest``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.tags
|
|
12
|
+
import capo_cloudfront.types.vpc_origin_endpoint_config
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CreateVpcOriginRequest(TypedDict, closed=True):
|
|
16
|
+
vpc_origin_endpoint_config: (
|
|
17
|
+
"capo_cloudfront.types.vpc_origin_endpoint_config.VpcOriginEndpointConfig"
|
|
18
|
+
)
|
|
19
|
+
"""<p>The VPC origin endpoint configuration.</p>"""
|
|
20
|
+
tags: NotRequired["capo_cloudfront.types.tags.Tags"]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# --- restXml ser/de ---
|
|
24
|
+
def serialize_xml(value: CreateVpcOriginRequest, parent: Element, tag: str) -> None:
|
|
25
|
+
el = SubElement(parent, tag)
|
|
26
|
+
import capo_cloudfront.types.vpc_origin_endpoint_config
|
|
27
|
+
|
|
28
|
+
capo_cloudfront.types.vpc_origin_endpoint_config.serialize_xml(
|
|
29
|
+
value["vpc_origin_endpoint_config"], el, "VpcOriginEndpointConfig"
|
|
30
|
+
)
|
|
31
|
+
if "tags" in value:
|
|
32
|
+
import capo_cloudfront.types.tags
|
|
33
|
+
|
|
34
|
+
capo_cloudfront.types.tags.serialize_xml(value["tags"], el, "Tags")
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def deserialize_xml(el: Element) -> CreateVpcOriginRequest:
|
|
38
|
+
out: CreateVpcOriginRequest = {} # type: ignore[typeddict-item]
|
|
39
|
+
child_vpc_origin_endpoint_config = el.find("VpcOriginEndpointConfig")
|
|
40
|
+
if child_vpc_origin_endpoint_config is not None:
|
|
41
|
+
import capo_cloudfront.types.vpc_origin_endpoint_config
|
|
42
|
+
|
|
43
|
+
out["vpc_origin_endpoint_config"] = (
|
|
44
|
+
capo_cloudfront.types.vpc_origin_endpoint_config.deserialize_xml(
|
|
45
|
+
child_vpc_origin_endpoint_config
|
|
46
|
+
)
|
|
47
|
+
)
|
|
48
|
+
else:
|
|
49
|
+
raise DeserializationError(
|
|
50
|
+
"CreateVpcOriginRequest.vpc_origin_endpoint_config required"
|
|
51
|
+
)
|
|
52
|
+
child_tags = el.find("Tags")
|
|
53
|
+
if child_tags is not None:
|
|
54
|
+
import capo_cloudfront.types.tags
|
|
55
|
+
|
|
56
|
+
out["tags"] = capo_cloudfront.types.tags.deserialize_xml(child_tags)
|
|
57
|
+
return out
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CreateVpcOriginResult``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
|
|
9
|
+
if TYPE_CHECKING:
|
|
10
|
+
import capo_cloudfront.types.string
|
|
11
|
+
import capo_cloudfront.types.vpc_origin
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class CreateVpcOriginResult(TypedDict, closed=True):
|
|
15
|
+
vpc_origin: NotRequired["capo_cloudfront.types.vpc_origin.VpcOrigin"]
|
|
16
|
+
"""<p>The VPC origin.</p>"""
|
|
17
|
+
location: NotRequired["capo_cloudfront.types.string.string"]
|
|
18
|
+
"""<p>The VPC origin location.</p>"""
|
|
19
|
+
e_tag: NotRequired["capo_cloudfront.types.string.string"]
|
|
20
|
+
"""<p>The VPC origin ETag.</p>"""
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
# --- restXml ser/de ---
|
|
24
|
+
def serialize_xml(value: CreateVpcOriginResult, parent: Element, tag: str) -> None:
|
|
25
|
+
el = SubElement(parent, tag)
|
|
26
|
+
if "vpc_origin" in value:
|
|
27
|
+
import capo_cloudfront.types.vpc_origin
|
|
28
|
+
|
|
29
|
+
capo_cloudfront.types.vpc_origin.serialize_xml(
|
|
30
|
+
value["vpc_origin"], el, "VpcOrigin"
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
def deserialize_xml(el: Element) -> CreateVpcOriginResult:
|
|
35
|
+
out: CreateVpcOriginResult = {} # type: ignore[typeddict-item]
|
|
36
|
+
child_vpc_origin = el.find("VpcOrigin")
|
|
37
|
+
if child_vpc_origin is not None:
|
|
38
|
+
import capo_cloudfront.types.vpc_origin
|
|
39
|
+
|
|
40
|
+
out["vpc_origin"] = capo_cloudfront.types.vpc_origin.deserialize_xml(
|
|
41
|
+
child_vpc_origin
|
|
42
|
+
)
|
|
43
|
+
return out
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomErrorResponse``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.integer
|
|
12
|
+
import capo_cloudfront.types.long
|
|
13
|
+
import capo_cloudfront.types.string
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class CustomErrorResponse(TypedDict, closed=True):
|
|
17
|
+
error_code: "capo_cloudfront.types.integer.integer"
|
|
18
|
+
"""<p>The HTTP status code for which you want to specify a custom error page and/or a caching duration.</p>"""
|
|
19
|
+
response_page_path: NotRequired["capo_cloudfront.types.string.string"]
|
|
20
|
+
"""<p>The path to the custom error page that you want CloudFront to return to a viewer when your origin returns the HTTP status code specified by <code>ErrorCode</code>, for example, <code>/4xx-errors/403-forbidden.html</code>. If you want to store your objects and your custom error pages in different locations, your distribution must include a cache behavior for which the following is true:</p> <ul> <li> <p>The value of <code>PathPattern</code> matches the path to your custom error messages. For example, suppose you saved custom error pages for 4xx errors in an Amazon S3 bucket in a directory named <code>/4xx-errors</code>. Your distribution must include a cache behavior for which the path pattern routes requests for your custom error pages to that location, for example, <code>/4xx-errors/*</code>.</p> </li> <li> <p>The value of <code>TargetOriginId</code> specifies the value of the <code>ID</code> element for the origin that contains your custom error pages.</p> </li> </ul> <p>If you specify a value for <code>ResponsePagePath</code>, you must also specify a value for <code>ResponseCode</code>.</p> <p>We recommend that you store custom error pages in an Amazon S3 bucket. If you store custom error pages on an HTTP server and the server starts to return 5xx errors, CloudFront can't get the files that you want to return to viewers because the origin server is unavailable.</p>"""
|
|
21
|
+
response_code: NotRequired["capo_cloudfront.types.string.string"]
|
|
22
|
+
"""<p>The HTTP status code that you want CloudFront to return to the viewer along with the custom error page. There are a variety of reasons that you might want CloudFront to return a status code different from the status code that your origin returned to CloudFront, for example:</p> <ul> <li> <p>Some Internet devices (some firewalls and corporate proxies, for example) intercept HTTP 4xx and 5xx and prevent the response from being returned to the viewer. If you substitute <code>200</code>, the response typically won't be intercepted.</p> </li> <li> <p>If you don't care about distinguishing among different client errors or server errors, you can specify <code>400</code> or <code>500</code> as the <code>ResponseCode</code> for all 4xx or 5xx errors.</p> </li> <li> <p>You might want to return a <code>200</code> status code (OK) and static website so your customers don't know that your website is down.</p> </li> </ul> <p>If you specify a value for <code>ResponseCode</code>, you must also specify a value for <code>ResponsePagePath</code>.</p>"""
|
|
23
|
+
error_caching_min_ttl: NotRequired["capo_cloudfront.types.long.long"]
|
|
24
|
+
r"""<p>The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status code specified in <code>ErrorCode</code>. When this time period has elapsed, CloudFront queries your origin to see whether the problem that caused the error has been resolved and the requested object is now available.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html\">Customizing Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>"""
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
# --- restXml ser/de ---
|
|
28
|
+
def serialize_xml(value: CustomErrorResponse, parent: Element, tag: str) -> None:
|
|
29
|
+
el = SubElement(parent, tag)
|
|
30
|
+
SubElement(el, "ErrorCode").text = str(value["error_code"])
|
|
31
|
+
if "response_page_path" in value:
|
|
32
|
+
SubElement(el, "ResponsePagePath").text = str(value["response_page_path"])
|
|
33
|
+
if "response_code" in value:
|
|
34
|
+
SubElement(el, "ResponseCode").text = str(value["response_code"])
|
|
35
|
+
if "error_caching_min_ttl" in value:
|
|
36
|
+
SubElement(el, "ErrorCachingMinTTL").text = str(value["error_caching_min_ttl"])
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def deserialize_xml(el: Element) -> CustomErrorResponse:
|
|
40
|
+
out: CustomErrorResponse = {} # type: ignore[typeddict-item]
|
|
41
|
+
child_error_code = el.find("ErrorCode")
|
|
42
|
+
if child_error_code is not None:
|
|
43
|
+
out["error_code"] = int(child_error_code.text or "")
|
|
44
|
+
else:
|
|
45
|
+
raise DeserializationError("CustomErrorResponse.error_code required")
|
|
46
|
+
child_response_page_path = el.find("ResponsePagePath")
|
|
47
|
+
if child_response_page_path is not None:
|
|
48
|
+
out["response_page_path"] = str(child_response_page_path.text or "")
|
|
49
|
+
child_response_code = el.find("ResponseCode")
|
|
50
|
+
if child_response_code is not None:
|
|
51
|
+
out["response_code"] = str(child_response_code.text or "")
|
|
52
|
+
child_error_caching_min_ttl = el.find("ErrorCachingMinTTL")
|
|
53
|
+
if child_error_caching_min_ttl is not None:
|
|
54
|
+
out["error_caching_min_ttl"] = int(child_error_caching_min_ttl.text or "")
|
|
55
|
+
return out
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomErrorResponseList``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING, TypeAlias
|
|
4
|
+
|
|
5
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
import capo_cloudfront.types.custom_error_response
|
|
9
|
+
|
|
10
|
+
CustomErrorResponseList: TypeAlias = list[
|
|
11
|
+
"capo_cloudfront.types.custom_error_response.CustomErrorResponse"
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
# --- restXml ser/de ---
|
|
16
|
+
def serialize_xml(value: CustomErrorResponseList, parent: Element, tag: str) -> None:
|
|
17
|
+
el = SubElement(parent, tag)
|
|
18
|
+
for item in value:
|
|
19
|
+
import capo_cloudfront.types.custom_error_response
|
|
20
|
+
|
|
21
|
+
capo_cloudfront.types.custom_error_response.serialize_xml(
|
|
22
|
+
item, el, "CustomErrorResponse"
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def deserialize_xml(el: Element) -> CustomErrorResponseList:
|
|
27
|
+
import capo_cloudfront.types.custom_error_response
|
|
28
|
+
|
|
29
|
+
out: CustomErrorResponseList = []
|
|
30
|
+
for child in el.findall("CustomErrorResponse"):
|
|
31
|
+
out.append(capo_cloudfront.types.custom_error_response.deserialize_xml(child))
|
|
32
|
+
return out
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def serialize_xml_flat(
|
|
36
|
+
value: CustomErrorResponseList, parent: Element, tag: str
|
|
37
|
+
) -> None:
|
|
38
|
+
"""Variant used by parent structures with ``@xmlFlattened`` on the referencing member. Items emitted directly under ``parent``."""
|
|
39
|
+
for item in value:
|
|
40
|
+
import capo_cloudfront.types.custom_error_response
|
|
41
|
+
|
|
42
|
+
capo_cloudfront.types.custom_error_response.serialize_xml(item, parent, tag)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def deserialize_xml_flat(parent: Element, tag: str) -> CustomErrorResponseList:
|
|
46
|
+
import capo_cloudfront.types.custom_error_response
|
|
47
|
+
|
|
48
|
+
out: CustomErrorResponseList = []
|
|
49
|
+
for child in parent.findall(tag):
|
|
50
|
+
out.append(capo_cloudfront.types.custom_error_response.deserialize_xml(child))
|
|
51
|
+
return out
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomErrorResponses``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.custom_error_response_list
|
|
12
|
+
import capo_cloudfront.types.integer
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CustomErrorResponses(TypedDict, closed=True):
|
|
16
|
+
quantity: "capo_cloudfront.types.integer.integer"
|
|
17
|
+
"""<p>The number of HTTP status codes for which you want to specify a custom error page and/or a caching duration. If <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>"""
|
|
18
|
+
items: NotRequired[
|
|
19
|
+
"capo_cloudfront.types.custom_error_response_list.CustomErrorResponseList"
|
|
20
|
+
]
|
|
21
|
+
"""<p>A complex type that contains a <code>CustomErrorResponse</code> element for each HTTP status code for which you want to specify a custom error page and/or a caching duration. </p>"""
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# --- restXml ser/de ---
|
|
25
|
+
def serialize_xml(value: CustomErrorResponses, parent: Element, tag: str) -> None:
|
|
26
|
+
el = SubElement(parent, tag)
|
|
27
|
+
SubElement(el, "Quantity").text = str(value["quantity"])
|
|
28
|
+
if "items" in value:
|
|
29
|
+
import capo_cloudfront.types.custom_error_response_list
|
|
30
|
+
|
|
31
|
+
capo_cloudfront.types.custom_error_response_list.serialize_xml(
|
|
32
|
+
value["items"], el, "Items"
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def deserialize_xml(el: Element) -> CustomErrorResponses:
|
|
37
|
+
out: CustomErrorResponses = {} # type: ignore[typeddict-item]
|
|
38
|
+
child_quantity = el.find("Quantity")
|
|
39
|
+
if child_quantity is not None:
|
|
40
|
+
out["quantity"] = int(child_quantity.text or "")
|
|
41
|
+
else:
|
|
42
|
+
raise DeserializationError("CustomErrorResponses.quantity required")
|
|
43
|
+
child_items = el.find("Items")
|
|
44
|
+
if child_items is not None:
|
|
45
|
+
import capo_cloudfront.types.custom_error_response_list
|
|
46
|
+
|
|
47
|
+
out["items"] = capo_cloudfront.types.custom_error_response_list.deserialize_xml(
|
|
48
|
+
child_items
|
|
49
|
+
)
|
|
50
|
+
return out
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomHeaders``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.integer
|
|
12
|
+
import capo_cloudfront.types.origin_custom_headers_list
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class CustomHeaders(TypedDict, closed=True):
|
|
16
|
+
quantity: "capo_cloudfront.types.integer.integer"
|
|
17
|
+
"""<p>The number of custom headers, if any, for this distribution.</p>"""
|
|
18
|
+
items: NotRequired[
|
|
19
|
+
"capo_cloudfront.types.origin_custom_headers_list.OriginCustomHeadersList"
|
|
20
|
+
]
|
|
21
|
+
"""<p> <b>Optional</b>: A list that contains one <code>OriginCustomHeader</code> element for each custom header that you want CloudFront to forward to the origin. If Quantity is <code>0</code>, omit <code>Items</code>.</p>"""
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
# --- restXml ser/de ---
|
|
25
|
+
def serialize_xml(value: CustomHeaders, parent: Element, tag: str) -> None:
|
|
26
|
+
el = SubElement(parent, tag)
|
|
27
|
+
SubElement(el, "Quantity").text = str(value["quantity"])
|
|
28
|
+
if "items" in value:
|
|
29
|
+
import capo_cloudfront.types.origin_custom_headers_list
|
|
30
|
+
|
|
31
|
+
capo_cloudfront.types.origin_custom_headers_list.serialize_xml(
|
|
32
|
+
value["items"], el, "Items"
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
def deserialize_xml(el: Element) -> CustomHeaders:
|
|
37
|
+
out: CustomHeaders = {} # type: ignore[typeddict-item]
|
|
38
|
+
child_quantity = el.find("Quantity")
|
|
39
|
+
if child_quantity is not None:
|
|
40
|
+
out["quantity"] = int(child_quantity.text or "")
|
|
41
|
+
else:
|
|
42
|
+
raise DeserializationError("CustomHeaders.quantity required")
|
|
43
|
+
child_items = el.find("Items")
|
|
44
|
+
if child_items is not None:
|
|
45
|
+
import capo_cloudfront.types.origin_custom_headers_list
|
|
46
|
+
|
|
47
|
+
out["items"] = capo_cloudfront.types.origin_custom_headers_list.deserialize_xml(
|
|
48
|
+
child_items
|
|
49
|
+
)
|
|
50
|
+
return out
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomOriginConfig``."""
|
|
2
|
+
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
|
|
5
|
+
from typing_extensions import NotRequired, TypedDict
|
|
6
|
+
|
|
7
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
8
|
+
from capo_cloudfront.errors import DeserializationError
|
|
9
|
+
|
|
10
|
+
if TYPE_CHECKING:
|
|
11
|
+
import capo_cloudfront.types.integer
|
|
12
|
+
import capo_cloudfront.types.ip_address_type
|
|
13
|
+
import capo_cloudfront.types.origin_mtls_config
|
|
14
|
+
import capo_cloudfront.types.origin_protocol_policy
|
|
15
|
+
import capo_cloudfront.types.origin_ssl_protocols
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class CustomOriginConfig(TypedDict, closed=True):
|
|
19
|
+
http_port: "capo_cloudfront.types.integer.integer"
|
|
20
|
+
"""<p>The HTTP port that CloudFront uses to connect to the origin. Specify the HTTP port that the origin listens on.</p>"""
|
|
21
|
+
https_port: "capo_cloudfront.types.integer.integer"
|
|
22
|
+
"""<p>The HTTPS port that CloudFront uses to connect to the origin. Specify the HTTPS port that the origin listens on.</p>"""
|
|
23
|
+
origin_protocol_policy: (
|
|
24
|
+
"capo_cloudfront.types.origin_protocol_policy.OriginProtocolPolicy"
|
|
25
|
+
)
|
|
26
|
+
"""<p>Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:</p> <ul> <li> <p> <code>http-only</code> – CloudFront always uses HTTP to connect to the origin.</p> </li> <li> <p> <code>match-viewer</code> – CloudFront connects to the origin using the same protocol that the viewer used to connect to CloudFront.</p> </li> <li> <p> <code>https-only</code> – CloudFront always uses HTTPS to connect to the origin.</p> </li> </ul>"""
|
|
27
|
+
origin_ssl_protocols: NotRequired[
|
|
28
|
+
"capo_cloudfront.types.origin_ssl_protocols.OriginSslProtocols"
|
|
29
|
+
]
|
|
30
|
+
r"""<p>Specifies the minimum SSL/TLS protocol that CloudFront uses when connecting to your origin over HTTPS. Valid values include <code>SSLv3</code>, <code>TLSv1</code>, <code>TLSv1.1</code>, and <code>TLSv1.2</code>.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginSSLProtocols\">Minimum Origin SSL Protocol</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>"""
|
|
31
|
+
origin_read_timeout: NotRequired["capo_cloudfront.types.integer.integer"]
|
|
32
|
+
r"""<p>Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the <i>origin response timeout</i>. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout\">Response timeout</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>"""
|
|
33
|
+
origin_keepalive_timeout: NotRequired["capo_cloudfront.types.integer.integer"]
|
|
34
|
+
r"""<p>Specifies how long, in seconds, CloudFront persists its connection to the origin. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 5 seconds.</p> <p>For more information, see <a href=\"https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginKeepaliveTimeout\">Keep-alive timeout (custom origins only)</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>"""
|
|
35
|
+
ip_address_type: NotRequired["capo_cloudfront.types.ip_address_type.IpAddressType"]
|
|
36
|
+
"""<p>Specifies which IP protocol CloudFront uses when connecting to your origin. If your origin uses both IPv4 and IPv6 protocols, you can choose <code>dualstack</code> to help optimize reliability.</p>"""
|
|
37
|
+
origin_mtls_config: NotRequired[
|
|
38
|
+
"capo_cloudfront.types.origin_mtls_config.OriginMtlsConfig"
|
|
39
|
+
]
|
|
40
|
+
"""<p>Configures mutual TLS authentication between CloudFront and your origin server.</p>"""
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# --- restXml ser/de ---
|
|
44
|
+
def serialize_xml(value: CustomOriginConfig, parent: Element, tag: str) -> None:
|
|
45
|
+
el = SubElement(parent, tag)
|
|
46
|
+
SubElement(el, "HTTPPort").text = str(value["http_port"])
|
|
47
|
+
SubElement(el, "HTTPSPort").text = str(value["https_port"])
|
|
48
|
+
import capo_cloudfront.types.origin_protocol_policy
|
|
49
|
+
|
|
50
|
+
capo_cloudfront.types.origin_protocol_policy.serialize_xml(
|
|
51
|
+
value["origin_protocol_policy"], el, "OriginProtocolPolicy"
|
|
52
|
+
)
|
|
53
|
+
if "origin_ssl_protocols" in value:
|
|
54
|
+
import capo_cloudfront.types.origin_ssl_protocols
|
|
55
|
+
|
|
56
|
+
capo_cloudfront.types.origin_ssl_protocols.serialize_xml(
|
|
57
|
+
value["origin_ssl_protocols"], el, "OriginSslProtocols"
|
|
58
|
+
)
|
|
59
|
+
if "origin_read_timeout" in value:
|
|
60
|
+
SubElement(el, "OriginReadTimeout").text = str(value["origin_read_timeout"])
|
|
61
|
+
if "origin_keepalive_timeout" in value:
|
|
62
|
+
SubElement(el, "OriginKeepaliveTimeout").text = str(
|
|
63
|
+
value["origin_keepalive_timeout"]
|
|
64
|
+
)
|
|
65
|
+
if "ip_address_type" in value:
|
|
66
|
+
import capo_cloudfront.types.ip_address_type
|
|
67
|
+
|
|
68
|
+
capo_cloudfront.types.ip_address_type.serialize_xml(
|
|
69
|
+
value["ip_address_type"], el, "IpAddressType"
|
|
70
|
+
)
|
|
71
|
+
if "origin_mtls_config" in value:
|
|
72
|
+
import capo_cloudfront.types.origin_mtls_config
|
|
73
|
+
|
|
74
|
+
capo_cloudfront.types.origin_mtls_config.serialize_xml(
|
|
75
|
+
value["origin_mtls_config"], el, "OriginMtlsConfig"
|
|
76
|
+
)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def deserialize_xml(el: Element) -> CustomOriginConfig:
|
|
80
|
+
out: CustomOriginConfig = {} # type: ignore[typeddict-item]
|
|
81
|
+
child_http_port = el.find("HTTPPort")
|
|
82
|
+
if child_http_port is not None:
|
|
83
|
+
out["http_port"] = int(child_http_port.text or "")
|
|
84
|
+
else:
|
|
85
|
+
raise DeserializationError("CustomOriginConfig.http_port required")
|
|
86
|
+
child_https_port = el.find("HTTPSPort")
|
|
87
|
+
if child_https_port is not None:
|
|
88
|
+
out["https_port"] = int(child_https_port.text or "")
|
|
89
|
+
else:
|
|
90
|
+
raise DeserializationError("CustomOriginConfig.https_port required")
|
|
91
|
+
child_origin_protocol_policy = el.find("OriginProtocolPolicy")
|
|
92
|
+
if child_origin_protocol_policy is not None:
|
|
93
|
+
import capo_cloudfront.types.origin_protocol_policy
|
|
94
|
+
|
|
95
|
+
out["origin_protocol_policy"] = (
|
|
96
|
+
capo_cloudfront.types.origin_protocol_policy.deserialize_xml(
|
|
97
|
+
child_origin_protocol_policy
|
|
98
|
+
)
|
|
99
|
+
)
|
|
100
|
+
else:
|
|
101
|
+
raise DeserializationError("CustomOriginConfig.origin_protocol_policy required")
|
|
102
|
+
child_origin_ssl_protocols = el.find("OriginSslProtocols")
|
|
103
|
+
if child_origin_ssl_protocols is not None:
|
|
104
|
+
import capo_cloudfront.types.origin_ssl_protocols
|
|
105
|
+
|
|
106
|
+
out["origin_ssl_protocols"] = (
|
|
107
|
+
capo_cloudfront.types.origin_ssl_protocols.deserialize_xml(
|
|
108
|
+
child_origin_ssl_protocols
|
|
109
|
+
)
|
|
110
|
+
)
|
|
111
|
+
child_origin_read_timeout = el.find("OriginReadTimeout")
|
|
112
|
+
if child_origin_read_timeout is not None:
|
|
113
|
+
out["origin_read_timeout"] = int(child_origin_read_timeout.text or "")
|
|
114
|
+
child_origin_keepalive_timeout = el.find("OriginKeepaliveTimeout")
|
|
115
|
+
if child_origin_keepalive_timeout is not None:
|
|
116
|
+
out["origin_keepalive_timeout"] = int(child_origin_keepalive_timeout.text or "")
|
|
117
|
+
child_ip_address_type = el.find("IpAddressType")
|
|
118
|
+
if child_ip_address_type is not None:
|
|
119
|
+
import capo_cloudfront.types.ip_address_type
|
|
120
|
+
|
|
121
|
+
out["ip_address_type"] = capo_cloudfront.types.ip_address_type.deserialize_xml(
|
|
122
|
+
child_ip_address_type
|
|
123
|
+
)
|
|
124
|
+
child_origin_mtls_config = el.find("OriginMtlsConfig")
|
|
125
|
+
if child_origin_mtls_config is not None:
|
|
126
|
+
import capo_cloudfront.types.origin_mtls_config
|
|
127
|
+
|
|
128
|
+
out["origin_mtls_config"] = (
|
|
129
|
+
capo_cloudfront.types.origin_mtls_config.deserialize_xml(
|
|
130
|
+
child_origin_mtls_config
|
|
131
|
+
)
|
|
132
|
+
)
|
|
133
|
+
return out
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""Generated from Smithy shape ``com.amazonaws.cloudfront#CustomizationActionType``."""
|
|
2
|
+
|
|
3
|
+
from typing import Literal, TypeAlias, cast
|
|
4
|
+
|
|
5
|
+
from capo_cloudfront._protocol.xml import Element, SubElement
|
|
6
|
+
|
|
7
|
+
CustomizationActionType: TypeAlias = Literal[
|
|
8
|
+
"override",
|
|
9
|
+
"disable",
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
# --- restXml ser/de ---
|
|
14
|
+
def to_xml_text(value: CustomizationActionType) -> str:
|
|
15
|
+
return value
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def from_xml_text(text: str) -> CustomizationActionType:
|
|
19
|
+
return cast(CustomizationActionType, text)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def serialize_xml(value: CustomizationActionType, parent: Element, tag: str) -> None:
|
|
23
|
+
SubElement(parent, tag).text = to_xml_text(value)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
def deserialize_xml(el: Element) -> CustomizationActionType:
|
|
27
|
+
return from_xml_text(el.text or "")
|