aws-sdk-core 2.11.335 → 3.62.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -0
- data/lib/aws-sdk-core.rb +84 -547
- data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
- data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
- data/lib/aws-sdk-core/binary.rb +6 -0
- data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
- data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
- data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
- data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
- data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
- data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
- data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
- data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
- data/lib/aws-sdk-core/client_stubs.rb +11 -8
- data/lib/aws-sdk-core/credential_provider.rb +2 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +34 -1
- data/lib/aws-sdk-core/errors.rb +123 -22
- data/lib/aws-sdk-core/event_emitter.rb +62 -0
- data/lib/aws-sdk-core/ini_parser.rb +1 -0
- data/lib/aws-sdk-core/instance_profile_credentials.rb +1 -1
- data/lib/aws-sdk-core/json.rb +9 -10
- data/lib/aws-sdk-core/json/builder.rb +4 -2
- data/lib/aws-sdk-core/json/error_handler.rb +19 -2
- data/lib/aws-sdk-core/json/handler.rb +22 -3
- data/lib/aws-sdk-core/json/parser.rb +1 -1
- data/lib/aws-sdk-core/log/param_filter.rb +4 -3
- data/lib/aws-sdk-core/pageable_response.rb +1 -0
- data/lib/aws-sdk-core/pager.rb +30 -25
- data/lib/aws-sdk-core/param_converter.rb +3 -3
- data/lib/aws-sdk-core/param_validator.rb +56 -21
- data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
- data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
- data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
- data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
- data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
- data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
- data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
- data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
- data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
- data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
- data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
- data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
- data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
- data/lib/aws-sdk-core/plugins/logging.rb +18 -18
- data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
- data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
- data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
- data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
- data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -15
- data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
- data/lib/aws-sdk-core/plugins/retry_errors.rb +79 -24
- data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
- data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
- data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
- data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
- data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
- data/lib/aws-sdk-core/process_credentials.rb +80 -0
- data/lib/aws-sdk-core/query.rb +5 -0
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
- data/lib/aws-sdk-core/query/handler.rb +20 -16
- data/lib/aws-sdk-core/query/param_builder.rb +10 -4
- data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
- data/lib/aws-sdk-core/resources/collection.rb +121 -0
- data/lib/aws-sdk-core/rest.rb +10 -0
- data/lib/aws-sdk-core/rest/handler.rb +1 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
- data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
- data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
- data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
- data/lib/aws-sdk-core/rest/response/body.rb +14 -1
- data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
- data/lib/aws-sdk-core/shared_config.rb +147 -10
- data/lib/aws-sdk-core/shared_credentials.rb +2 -0
- data/lib/aws-sdk-core/structure.rb +22 -13
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
- data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
- data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
- data/lib/aws-sdk-core/util.rb +66 -0
- data/lib/aws-sdk-core/waiters.rb +3 -0
- data/lib/aws-sdk-core/waiters/poller.rb +5 -9
- data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
- data/lib/aws-sdk-core/xml.rb +9 -0
- data/lib/aws-sdk-core/xml/builder.rb +11 -5
- data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
- data/lib/aws-sdk-core/xml/parser.rb +1 -11
- data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
- data/lib/aws-sdk-sts.rb +45 -0
- data/lib/aws-sdk-sts/client.rb +1833 -0
- data/lib/aws-sdk-sts/client_api.rb +320 -0
- data/lib/aws-sdk-sts/customizations.rb +0 -0
- data/lib/aws-sdk-sts/errors.rb +142 -0
- data/lib/aws-sdk-sts/resource.rb +23 -0
- data/lib/aws-sdk-sts/types.rb +1312 -0
- data/lib/seahorse.rb +60 -60
- data/lib/seahorse/client/async_base.rb +50 -0
- data/lib/seahorse/client/async_response.rb +62 -0
- data/lib/seahorse/client/base.rb +2 -8
- data/lib/seahorse/client/configuration.rb +4 -2
- data/lib/seahorse/client/h2/connection.rb +244 -0
- data/lib/seahorse/client/h2/handler.rb +151 -0
- data/lib/seahorse/client/http/async_response.rb +42 -0
- data/lib/seahorse/client/http/response.rb +10 -5
- data/lib/seahorse/client/logging/formatter.rb +2 -0
- data/lib/seahorse/client/logging/handler.rb +2 -0
- data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
- data/lib/seahorse/client/net_http/handler.rb +5 -0
- data/lib/seahorse/client/net_http/patches.rb +9 -1
- data/lib/seahorse/client/networking_error.rb +28 -0
- data/lib/seahorse/client/plugin.rb +66 -6
- data/lib/seahorse/client/plugins/content_length.rb +7 -2
- data/lib/seahorse/client/plugins/endpoint.rb +14 -10
- data/lib/seahorse/client/plugins/h2.rb +64 -0
- data/lib/seahorse/client/plugins/logging.rb +17 -19
- data/lib/seahorse/client/plugins/net_http.rb +23 -15
- data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
- data/lib/seahorse/client/plugins/response_target.rb +10 -1
- data/lib/seahorse/client/request_context.rb +5 -0
- data/lib/seahorse/model/api.rb +33 -0
- data/lib/seahorse/model/authorizer.rb +21 -0
- data/lib/seahorse/model/operation.rb +11 -0
- data/lib/seahorse/model/shapes.rb +44 -2
- data/lib/seahorse/util.rb +1 -22
- metadata +91 -1021
- data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
- data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
- data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
- data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
- data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
- data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
- data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
- data/apis/acm/2015-12-08/api-2.json +0 -843
- data/apis/acm/2015-12-08/examples-1.json +0 -5
- data/apis/acm/2015-12-08/paginators-1.json +0 -10
- data/apis/acm/2015-12-08/smoke.json +0 -18
- data/apis/acm/2015-12-08/waiters-2.json +0 -35
- data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3994
- data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
- data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
- data/apis/amplify/2017-07-25/api-2.json +0 -1972
- data/apis/amplify/2017-07-25/examples-1.json +0 -5
- data/apis/amplify/2017-07-25/paginators-1.json +0 -4
- data/apis/apigateway/2015-07-09/api-2.json +0 -5382
- data/apis/apigateway/2015-07-09/examples-1.json +0 -5
- data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
- data/apis/apigateway/2015-07-09/smoke.json +0 -20
- data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
- data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
- data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
- data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
- data/apis/application-autoscaling/2016-02-06/api-2.json +0 -768
- data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
- data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
- data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
- data/apis/application-insights/2018-11-25/api-2.json +0 -721
- data/apis/application-insights/2018-11-25/examples-1.json +0 -5
- data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
- data/apis/appmesh/2018-10-01/api-2.json +0 -1972
- data/apis/appmesh/2018-10-01/examples-1.json +0 -4
- data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
- data/apis/appmesh/2019-01-25/api-2.json +0 -3202
- data/apis/appmesh/2019-01-25/examples-1.json +0 -4
- data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
- data/apis/appstream/2016-12-01/api-2.json +0 -2304
- data/apis/appstream/2016-12-01/examples-1.json +0 -5
- data/apis/appstream/2016-12-01/paginators-1.json +0 -14
- data/apis/appstream/2016-12-01/smoke.json +0 -11
- data/apis/appstream/2016-12-01/waiters-2.json +0 -55
- data/apis/appsync/2017-07-25/api-2.json +0 -2003
- data/apis/appsync/2017-07-25/examples-1.json +0 -5
- data/apis/appsync/2017-07-25/paginators-1.json +0 -4
- data/apis/athena/2017-05-18/api-2.json +0 -984
- data/apis/athena/2017-05-18/examples-1.json +0 -5
- data/apis/athena/2017-05-18/paginators-1.json +0 -24
- data/apis/athena/2017-05-18/smoke.json +0 -11
- data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
- data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
- data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
- data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
- data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
- data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
- data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
- data/apis/autoscaling/2011-01-01/smoke.json +0 -20
- data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
- data/apis/backup/2018-11-15/api-2.json +0 -2150
- data/apis/backup/2018-11-15/examples-1.json +0 -5
- data/apis/backup/2018-11-15/paginators-1.json +0 -59
- data/apis/batch/2016-08-10/api-2.json +0 -1128
- data/apis/batch/2016-08-10/examples-1.json +0 -589
- data/apis/batch/2016-08-10/paginators-1.json +0 -28
- data/apis/batch/2016-08-10/smoke.json +0 -11
- data/apis/budgets/2016-10-20/api-2.json +0 -807
- data/apis/budgets/2016-10-20/examples-1.json +0 -5
- data/apis/budgets/2016-10-20/paginators-1.json +0 -4
- data/apis/ce/2017-10-25/api-2.json +0 -1035
- data/apis/ce/2017-10-25/examples-1.json +0 -5
- data/apis/ce/2017-10-25/paginators-1.json +0 -4
- data/apis/chime/2018-05-01/api-2.json +0 -2902
- data/apis/chime/2018-05-01/examples-1.json +0 -5
- data/apis/chime/2018-05-01/paginators-1.json +0 -29
- data/apis/cloud9/2017-09-23/api-2.json +0 -547
- data/apis/cloud9/2017-09-23/examples-1.json +0 -308
- data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
- data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
- data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
- data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
- data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
- data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
- data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
- data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
- data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
- data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
- data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
- data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
- data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
- data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
- data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
- data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
- data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
- data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
- data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
- data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
- data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
- data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
- data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
- data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
- data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
- data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
- data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
- data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
- data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
- data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
- data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
- data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
- data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
- data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
- data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
- data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
- data/apis/cloudfront/2017-10-30/smoke.json +0 -20
- data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
- data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
- data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
- data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
- data/apis/cloudfront/2018-06-18/smoke.json +0 -20
- data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
- data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
- data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
- data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
- data/apis/cloudfront/2018-11-05/smoke.json +0 -20
- data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
- data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
- data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
- data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
- data/apis/cloudfront/2019-03-26/smoke.json +0 -20
- data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
- data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
- data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
- data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
- data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
- data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
- data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
- data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
- data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
- data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
- data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
- data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
- data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
- data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
- data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
- data/apis/codebuild/2016-10-06/api-2.json +0 -1276
- data/apis/codebuild/2016-10-06/examples-1.json +0 -281
- data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
- data/apis/codebuild/2016-10-06/smoke.json +0 -11
- data/apis/codecommit/2015-04-13/api-2.json +0 -4248
- data/apis/codecommit/2015-04-13/examples-1.json +0 -5
- data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
- data/apis/codecommit/2015-04-13/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
- data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
- data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
- data/apis/codedeploy/2014-10-06/smoke.json +0 -18
- data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
- data/apis/codepipeline/2015-07-09/api-2.json +0 -2382
- data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
- data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
- data/apis/codepipeline/2015-07-09/smoke.json +0 -18
- data/apis/codestar/2017-04-19/api-2.json +0 -1033
- data/apis/codestar/2017-04-19/examples-1.json +0 -5
- data/apis/codestar/2017-04-19/paginators-1.json +0 -4
- data/apis/codestar/2017-04-19/smoke.json +0 -11
- data/apis/cognito-identity/2014-06-30/api-2.json +0 -1053
- data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
- data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
- data/apis/cognito-idp/2016-04-18/api-2.json +0 -5349
- data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
- data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -52
- data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
- data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
- data/apis/comprehend/2017-11-27/api-2.json +0 -2361
- data/apis/comprehend/2017-11-27/examples-1.json +0 -5
- data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
- data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
- data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
- data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
- data/apis/config/2014-11-12/api-2.json +0 -3270
- data/apis/config/2014-11-12/examples-1.json +0 -5
- data/apis/config/2014-11-12/paginators-1.json +0 -16
- data/apis/config/2014-11-12/smoke.json +0 -19
- data/apis/connect/2017-08-08/api-2.json +0 -1379
- data/apis/connect/2017-08-08/examples-1.json +0 -5
- data/apis/connect/2017-08-08/paginators-1.json +0 -14
- data/apis/cur/2017-01-06/api-2.json +0 -247
- data/apis/cur/2017-01-06/examples-1.json +0 -102
- data/apis/cur/2017-01-06/paginators-1.json +0 -9
- data/apis/cur/2017-01-06/smoke.json +0 -11
- data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
- data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
- data/apis/datasync/2018-11-09/api-2.json +0 -1204
- data/apis/datasync/2018-11-09/examples-1.json +0 -5
- data/apis/datasync/2018-11-09/paginators-1.json +0 -29
- data/apis/dax/2017-04-19/api-2.json +0 -1140
- data/apis/dax/2017-04-19/examples-1.json +0 -5
- data/apis/dax/2017-04-19/paginators-1.json +0 -4
- data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
- data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
- data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
- data/apis/devicefarm/2015-06-23/smoke.json +0 -18
- data/apis/directconnect/2012-10-25/api-2.json +0 -2066
- data/apis/directconnect/2012-10-25/examples-1.json +0 -5
- data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
- data/apis/directconnect/2012-10-25/smoke.json +0 -18
- data/apis/discovery/2015-11-01/api-2.json +0 -1334
- data/apis/discovery/2015-11-01/examples-1.json +0 -5
- data/apis/discovery/2015-11-01/paginators-1.json +0 -14
- data/apis/discovery/2015-11-01/smoke.json +0 -11
- data/apis/dlm/2018-01-12/api-2.json +0 -444
- data/apis/dlm/2018-01-12/examples-1.json +0 -5
- data/apis/dlm/2018-01-12/paginators-1.json +0 -4
- data/apis/dms/2016-01-01/api-2.json +0 -2259
- data/apis/dms/2016-01-01/examples-1.json +0 -1053
- data/apis/dms/2016-01-01/paginators-1.json +0 -79
- data/apis/dms/2016-01-01/smoke.json +0 -18
- data/apis/dms/2016-01-01/waiters-2.json +0 -336
- data/apis/docdb/2014-10-31/api-2.json +0 -2482
- data/apis/docdb/2014-10-31/examples-1.json +0 -5
- data/apis/docdb/2014-10-31/paginators-1.json +0 -43
- data/apis/docdb/2014-10-31/smoke.json +0 -18
- data/apis/docdb/2014-10-31/waiters-2.json +0 -90
- data/apis/ds/2015-04-16/api-2.json +0 -2634
- data/apis/ds/2015-04-16/examples-1.json +0 -5
- data/apis/ds/2015-04-16/paginators-1.json +0 -9
- data/apis/ds/2015-04-16/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/api-2.json +0 -803
- data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/smoke.json +0 -20
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/api-2.json +0 -2802
- data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
- data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
- data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
- data/apis/dynamodb/2012-08-10/smoke.json +0 -20
- data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
- data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
- data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
- data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
- data/apis/ec2/2015-10-01/api-2.json +0 -13760
- data/apis/ec2/2015-10-01/examples-1.json +0 -5
- data/apis/ec2/2015-10-01/paginators-1.json +0 -138
- data/apis/ec2/2015-10-01/resources-1.json +0 -2582
- data/apis/ec2/2015-10-01/waiters-2.json +0 -593
- data/apis/ec2/2016-04-01/api-2.json +0 -14191
- data/apis/ec2/2016-04-01/examples-1.json +0 -3729
- data/apis/ec2/2016-04-01/paginators-1.json +0 -138
- data/apis/ec2/2016-04-01/resources-1.json +0 -2582
- data/apis/ec2/2016-04-01/waiters-2.json +0 -593
- data/apis/ec2/2016-09-15/api-2.json +0 -14415
- data/apis/ec2/2016-09-15/examples-1.json +0 -3740
- data/apis/ec2/2016-09-15/paginators-1.json +0 -138
- data/apis/ec2/2016-09-15/resources-1.json +0 -2582
- data/apis/ec2/2016-09-15/waiters-2.json +0 -593
- data/apis/ec2/2016-11-15/api-2.json +0 -24837
- data/apis/ec2/2016-11-15/examples-1.json +0 -5048
- data/apis/ec2/2016-11-15/paginators-1.json +0 -450
- data/apis/ec2/2016-11-15/resources-1.json +0 -2582
- data/apis/ec2/2016-11-15/smoke.json +0 -20
- data/apis/ec2/2016-11-15/waiters-2.json +0 -622
- data/apis/ecr/2015-09-21/api-2.json +0 -1383
- data/apis/ecr/2015-09-21/examples-1.json +0 -215
- data/apis/ecr/2015-09-21/paginators-1.json +0 -22
- data/apis/ecr/2015-09-21/smoke.json +0 -18
- data/apis/ecs/2014-11-13/api-2.json +0 -2809
- data/apis/ecs/2014-11-13/examples-1.json +0 -1137
- data/apis/ecs/2014-11-13/paginators-1.json +0 -40
- data/apis/ecs/2014-11-13/smoke.json +0 -18
- data/apis/ecs/2014-11-13/waiters-2.json +0 -93
- data/apis/eks/2017-11-01/api-2.json +0 -597
- data/apis/eks/2017-11-01/examples-1.json +0 -114
- data/apis/eks/2017-11-01/paginators-1.json +0 -4
- data/apis/eks/2017-11-01/waiters-2.json +0 -54
- data/apis/elasticache/2015-02-02/api-2.json +0 -3131
- data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
- data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
- data/apis/elasticache/2015-02-02/smoke.json +0 -18
- data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
- data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
- data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
- data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
- data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -896
- data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
- data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
- data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
- data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
- data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
- data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
- data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
- data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
- data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
- data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
- data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
- data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
- data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
- data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
- data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
- data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
- data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
- data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
- data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
- data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
- data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
- data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
- data/apis/email/2010-12-01/api-2.json +0 -3182
- data/apis/email/2010-12-01/examples-1.json +0 -1021
- data/apis/email/2010-12-01/paginators-1.json +0 -18
- data/apis/email/2010-12-01/smoke.json +0 -18
- data/apis/email/2010-12-01/waiters-2.json +0 -18
- data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
- data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
- data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
- data/apis/es/2015-01-01/api-2.json +0 -1543
- data/apis/es/2015-01-01/examples-1.json +0 -5
- data/apis/es/2015-01-01/paginators-1.json +0 -29
- data/apis/es/2015-01-01/smoke.json +0 -18
- data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
- data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
- data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
- data/apis/eventbridge/2015-10-07/smoke.json +0 -18
- data/apis/events/2015-10-07/api-2.json +0 -1462
- data/apis/events/2015-10-07/examples-1.json +0 -5
- data/apis/events/2015-10-07/paginators-1.json +0 -4
- data/apis/events/2015-10-07/smoke.json +0 -18
- data/apis/firehose/2015-08-04/api-2.json +0 -1376
- data/apis/firehose/2015-08-04/examples-1.json +0 -5
- data/apis/firehose/2015-08-04/paginators-1.json +0 -4
- data/apis/firehose/2015-08-04/smoke.json +0 -18
- data/apis/fms/2018-01-01/api-2.json +0 -692
- data/apis/fms/2018-01-01/examples-1.json +0 -5
- data/apis/fms/2018-01-01/paginators-1.json +0 -22
- data/apis/fsx/2018-03-01/api-2.json +0 -1050
- data/apis/fsx/2018-03-01/examples-1.json +0 -384
- data/apis/fsx/2018-03-01/paginators-1.json +0 -14
- data/apis/gamelift/2015-10-01/api-2.json +0 -3447
- data/apis/gamelift/2015-10-01/examples-1.json +0 -5
- data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
- data/apis/gamelift/2015-10-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/api-2.json +0 -1906
- data/apis/glacier/2012-06-01/examples-1.json +0 -806
- data/apis/glacier/2012-06-01/paginators-1.json +0 -28
- data/apis/glacier/2012-06-01/resources-1.json +0 -563
- data/apis/glacier/2012-06-01/smoke.json +0 -18
- data/apis/glacier/2012-06-01/waiters-2.json +0 -39
- data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
- data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
- data/apis/glue/2017-03-31/api-2.json +0 -6291
- data/apis/glue/2017-03-31/examples-1.json +0 -5
- data/apis/glue/2017-03-31/paginators-1.json +0 -120
- data/apis/glue/2017-03-31/smoke.json +0 -11
- data/apis/greengrass/2017-06-07/api-2.json +0 -5103
- data/apis/groundstation/2019-05-23/api-2.json +0 -2059
- data/apis/groundstation/2019-05-23/examples-1.json +0 -4
- data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
- data/apis/guardduty/2017-11-28/api-2.json +0 -3206
- data/apis/guardduty/2017-11-28/examples-1.json +0 -5
- data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
- data/apis/health/2016-08-04/api-2.json +0 -554
- data/apis/health/2016-08-04/examples-1.json +0 -5
- data/apis/health/2016-08-04/paginators-1.json +0 -31
- data/apis/health/2016-08-04/smoke.json +0 -11
- data/apis/iam/2010-05-08/api-2.json +0 -5778
- data/apis/iam/2010-05-08/examples-1.json +0 -1572
- data/apis/iam/2010-05-08/paginators-1.json +0 -198
- data/apis/iam/2010-05-08/resources-1.json +0 -1740
- data/apis/iam/2010-05-08/smoke.json +0 -18
- data/apis/iam/2010-05-08/waiters-2.json +0 -73
- data/apis/importexport/2010-06-01/api-2.json +0 -667
- data/apis/importexport/2010-06-01/paginators-1.json +0 -11
- data/apis/inspector/2016-02-16/api-2.json +0 -2387
- data/apis/inspector/2016-02-16/examples-1.json +0 -1148
- data/apis/inspector/2016-02-16/paginators-1.json +0 -54
- data/apis/inspector/2016-02-16/smoke.json +0 -18
- data/apis/iot-data/2015-05-28/api-2.json +0 -264
- data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
- data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
- data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/api-2.json +0 -9676
- data/apis/iot/2015-05-28/examples-1.json +0 -5
- data/apis/iot/2015-05-28/paginators-1.json +0 -4
- data/apis/iot/2015-05-28/smoke.json +0 -18
- data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
- data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
- data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
- data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
- data/apis/iotanalytics/2017-11-27/api-2.json +0 -2222
- data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
- data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
- data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
- data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
- data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
- data/apis/iotevents/2018-07-27/api-2.json +0 -1133
- data/apis/iotevents/2018-07-27/examples-1.json +0 -5
- data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
- data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
- data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
- data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
- data/apis/kafka/2018-11-14/api-2.json +0 -1698
- data/apis/kafka/2018-11-14/paginators-1.json +0 -34
- data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -417
- data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
- data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
- data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
- data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
- data/apis/kinesis/2013-12-02/api-2.json +0 -1409
- data/apis/kinesis/2013-12-02/examples-1.json +0 -5
- data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
- data/apis/kinesis/2013-12-02/smoke.json +0 -18
- data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
- data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
- data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
- data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
- data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
- data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
- data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
- data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
- data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
- data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
- data/apis/kms/2014-11-01/api-2.json +0 -1834
- data/apis/kms/2014-11-01/examples-1.json +0 -906
- data/apis/kms/2014-11-01/paginators-1.json +0 -32
- data/apis/kms/2014-11-01/smoke.json +0 -19
- data/apis/lakeformation/2017-03-31/api-2.json +0 -708
- data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
- data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
- data/apis/lambda/2014-11-11/api-2.json +0 -668
- data/apis/lambda/2014-11-11/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/api-2.json +0 -2345
- data/apis/lambda/2015-03-31/examples-1.json +0 -614
- data/apis/lambda/2015-03-31/paginators-1.json +0 -16
- data/apis/lambda/2015-03-31/smoke.json +0 -18
- data/apis/lambda/2015-03-31/waiters-2.json +0 -22
- data/apis/lex-models/2017-04-19/api-2.json +0 -2261
- data/apis/lex-models/2017-04-19/examples-1.json +0 -758
- data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
- data/apis/license-manager/2018-08-01/api-2.json +0 -780
- data/apis/license-manager/2018-08-01/examples-1.json +0 -5
- data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/api-2.json +0 -4781
- data/apis/lightsail/2016-11-28/examples-1.json +0 -5
- data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
- data/apis/lightsail/2016-11-28/smoke.json +0 -11
- data/apis/logs/2014-03-28/api-2.json +0 -1701
- data/apis/logs/2014-03-28/examples-1.json +0 -5
- data/apis/logs/2014-03-28/paginators-1.json +0 -49
- data/apis/logs/2014-03-28/smoke.json +0 -19
- data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
- data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
- data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
- data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
- data/apis/macie/2017-12-19/api-2.json +0 -365
- data/apis/macie/2017-12-19/examples-1.json +0 -5
- data/apis/macie/2017-12-19/paginators-1.json +0 -14
- data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
- data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
- data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
- data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
- data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
- data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
- data/apis/mediaconnect/2018-11-14/api-2.json +0 -1880
- data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
- data/apis/mediaconvert/2017-08-29/api-2.json +0 -8224
- data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
- data/apis/medialive/2017-10-14/api-2.json +0 -8711
- data/apis/medialive/2017-10-14/paginators-1.json +0 -40
- data/apis/medialive/2017-10-14/waiters-2.json +0 -111
- data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1494
- data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
- data/apis/mediapackage/2017-10-12/api-2.json +0 -2039
- data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
- data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
- data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
- data/apis/mediastore/2017-09-01/api-2.json +0 -735
- data/apis/mediastore/2017-09-01/examples-1.json +0 -5
- data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
- data/apis/mediatailor/2018-04-23/api-2.json +0 -524
- data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
- data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
- data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
- data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
- data/apis/mobile/2017-07-01/api-2.json +0 -551
- data/apis/mobile/2017-07-01/examples-1.json +0 -5
- data/apis/mobile/2017-07-01/paginators-1.json +0 -14
- data/apis/monitoring/2010-08-01/api-2.json +0 -1525
- data/apis/monitoring/2010-08-01/examples-1.json +0 -5
- data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
- data/apis/monitoring/2010-08-01/resources-1.json +0 -346
- data/apis/monitoring/2010-08-01/smoke.json +0 -22
- data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
- data/apis/mq/2017-11-27/api-2.json +0 -2490
- data/apis/mq/2017-11-27/paginators-1.json +0 -3
- data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
- data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
- data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
- data/apis/neptune/2014-10-31/api-2.json +0 -3515
- data/apis/neptune/2014-10-31/examples-1.json +0 -5
- data/apis/neptune/2014-10-31/paginators-1.json +0 -61
- data/apis/neptune/2014-10-31/smoke.json +0 -18
- data/apis/neptune/2014-10-31/waiters-2.json +0 -90
- data/apis/opsworks/2013-02-18/api-2.json +0 -2885
- data/apis/opsworks/2013-02-18/examples-1.json +0 -5
- data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
- data/apis/opsworks/2013-02-18/resources-1.json +0 -173
- data/apis/opsworks/2013-02-18/smoke.json +0 -18
- data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
- data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
- data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
- data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
- data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
- data/apis/organizations/2016-11-28/api-2.json +0 -2317
- data/apis/organizations/2016-11-28/examples-1.json +0 -1409
- data/apis/organizations/2016-11-28/paginators-1.json +0 -74
- data/apis/personalize-events/2018-03-22/api-2.json +0 -91
- data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
- data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
- data/apis/personalize-runtime/2018-05-22/api-2.json +0 -132
- data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
- data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
- data/apis/personalize/2018-05-22/api-2.json +0 -1695
- data/apis/personalize/2018-05-22/examples-1.json +0 -5
- data/apis/personalize/2018-05-22/paginators-1.json +0 -58
- data/apis/pi/2018-02-27/api-2.json +0 -253
- data/apis/pi/2018-02-27/examples-1.json +0 -5
- data/apis/pi/2018-02-27/paginators-1.json +0 -4
- data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2080
- data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
- data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
- data/apis/pinpoint/2016-12-01/api-2.json +0 -8526
- data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
- data/apis/polly/2016-06-10/api-2.json +0 -830
- data/apis/polly/2016-06-10/examples-1.json +0 -171
- data/apis/polly/2016-06-10/paginators-1.json +0 -9
- data/apis/polly/2016-06-10/smoke.json +0 -11
- data/apis/pricing/2017-10-15/api-2.json +0 -227
- data/apis/pricing/2017-10-15/examples-1.json +0 -103
- data/apis/pricing/2017-10-15/paginators-1.json +0 -19
- data/apis/quicksight/2018-04-01/api-2.json +0 -1223
- data/apis/quicksight/2018-04-01/examples-1.json +0 -5
- data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
- data/apis/ram/2018-01-04/api-2.json +0 -964
- data/apis/ram/2018-01-04/examples-1.json +0 -5
- data/apis/ram/2018-01-04/paginators-1.json +0 -34
- data/apis/rds-data/2018-08-01/api-2.json +0 -787
- data/apis/rds-data/2018-08-01/examples-1.json +0 -4
- data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
- data/apis/rds/2013-01-10/api-2.json +0 -2903
- data/apis/rds/2013-01-10/examples-1.json +0 -5
- data/apis/rds/2013-01-10/paginators-1.json +0 -97
- data/apis/rds/2013-01-10/smoke.json +0 -18
- data/apis/rds/2013-02-12/api-2.json +0 -3059
- data/apis/rds/2013-02-12/examples-1.json +0 -5
- data/apis/rds/2013-02-12/paginators-1.json +0 -110
- data/apis/rds/2013-02-12/smoke.json +0 -18
- data/apis/rds/2013-09-09/api-2.json +0 -3160
- data/apis/rds/2013-09-09/examples-1.json +0 -5
- data/apis/rds/2013-09-09/paginators-1.json +0 -110
- data/apis/rds/2013-09-09/smoke.json +0 -18
- data/apis/rds/2013-09-09/waiters-2.json +0 -97
- data/apis/rds/2014-09-01/api-2.json +0 -3273
- data/apis/rds/2014-09-01/examples-1.json +0 -5
- data/apis/rds/2014-09-01/paginators-1.json +0 -4
- data/apis/rds/2014-09-01/smoke.json +0 -18
- data/apis/rds/2014-10-31/api-2.json +0 -6575
- data/apis/rds/2014-10-31/examples-1.json +0 -1951
- data/apis/rds/2014-10-31/paginators-1.json +0 -128
- data/apis/rds/2014-10-31/resources-1.json +0 -3272
- data/apis/rds/2014-10-31/smoke.json +0 -18
- data/apis/rds/2014-10-31/waiters-2.json +0 -175
- data/apis/rds/2015-11-12/api-2.json +0 -5509
- data/apis/rds/2015-11-12/examples-1.json +0 -1951
- data/apis/rds/2015-11-12/paginators-1.json +0 -110
- data/apis/rds/2015-11-12/resources-1.json +0 -3272
- data/apis/rds/2015-11-12/waiters-2.json +0 -175
- data/apis/redshift/2012-12-01/api-2.json +0 -4891
- data/apis/redshift/2012-12-01/examples-1.json +0 -5
- data/apis/redshift/2012-12-01/paginators-1.json +0 -94
- data/apis/redshift/2012-12-01/smoke.json +0 -18
- data/apis/redshift/2012-12-01/waiters-2.json +0 -97
- data/apis/rekognition/2016-06-27/api-2.json +0 -2142
- data/apis/rekognition/2016-06-27/examples-1.json +0 -651
- data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
- data/apis/rekognition/2016-06-27/smoke.json +0 -11
- data/apis/resource-groups/2017-11-27/api-2.json +0 -743
- data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
- data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
- data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
- data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
- data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
- data/apis/robomaker/2018-06-29/api-2.json +0 -2093
- data/apis/robomaker/2018-06-29/examples-1.json +0 -5
- data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
- data/apis/route53/2013-04-01/api-2.json +0 -3780
- data/apis/route53/2013-04-01/examples-1.json +0 -762
- data/apis/route53/2013-04-01/paginators-1.json +0 -33
- data/apis/route53/2013-04-01/smoke.json +0 -18
- data/apis/route53/2013-04-01/waiters-2.json +0 -18
- data/apis/route53domains/2014-05-15/api-2.json +0 -1382
- data/apis/route53domains/2014-05-15/examples-1.json +0 -5
- data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
- data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
- data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
- data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
- data/apis/route53resolver/2018-04-01/smoke.json +0 -18
- data/apis/runtime.lex/2016-11-28/api-2.json +0 -680
- data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
- data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
- data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
- data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
- data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
- data/apis/s3/2006-03-01/api-2.json +0 -6576
- data/apis/s3/2006-03-01/examples-1.json +0 -1876
- data/apis/s3/2006-03-01/paginators-1.json +0 -66
- data/apis/s3/2006-03-01/resources-1.json +0 -1249
- data/apis/s3/2006-03-01/smoke.json +0 -11
- data/apis/s3/2006-03-01/waiters-2.json +0 -73
- data/apis/s3control/2018-08-20/api-2.json +0 -1044
- data/apis/s3control/2018-08-20/examples-1.json +0 -5
- data/apis/s3control/2018-08-20/paginators-1.json +0 -9
- data/apis/sagemaker/2017-07-24/api-2.json +0 -5169
- data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
- data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
- data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
- data/apis/sdb/2009-04-15/api-2.json +0 -955
- data/apis/sdb/2009-04-15/paginators-1.json +0 -15
- data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
- data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
- data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
- data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
- data/apis/securityhub/2018-10-26/api-2.json +0 -2095
- data/apis/securityhub/2018-10-26/examples-1.json +0 -5
- data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
- data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
- data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
- data/apis/service-quotas/2019-06-24/api-2.json +0 -867
- data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
- data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
- data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
- data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
- data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
- data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
- data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
- data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
- data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
- data/apis/shield/2016-06-02/api-2.json +0 -893
- data/apis/shield/2016-06-02/examples-1.json +0 -5
- data/apis/shield/2016-06-02/paginators-1.json +0 -4
- data/apis/shield/2016-06-02/smoke.json +0 -11
- data/apis/signer/2017-08-25/api-2.json +0 -670
- data/apis/signer/2017-08-25/examples-1.json +0 -5
- data/apis/signer/2017-08-25/paginators-1.json +0 -19
- data/apis/signer/2017-08-25/waiters-2.json +0 -29
- data/apis/sms-voice/2018-09-05/api-2.json +0 -630
- data/apis/sms/2016-10-24/api-2.json +0 -1366
- data/apis/sms/2016-10-24/examples-1.json +0 -5
- data/apis/sms/2016-10-24/paginators-1.json +0 -28
- data/apis/sms/2016-10-24/smoke.json +0 -18
- data/apis/snowball/2016-06-30/api-2.json +0 -929
- data/apis/snowball/2016-06-30/examples-1.json +0 -442
- data/apis/snowball/2016-06-30/paginators-1.json +0 -16
- data/apis/snowball/2016-06-30/smoke.json +0 -11
- data/apis/sns/2010-03-31/api-2.json +0 -1468
- data/apis/sns/2010-03-31/examples-1.json +0 -5
- data/apis/sns/2010-03-31/paginators-1.json +0 -29
- data/apis/sns/2010-03-31/resources-1.json +0 -327
- data/apis/sns/2010-03-31/smoke.json +0 -19
- data/apis/sqs/2012-11-05/api-2.json +0 -1078
- data/apis/sqs/2012-11-05/examples-1.json +0 -5
- data/apis/sqs/2012-11-05/paginators-1.json +0 -7
- data/apis/sqs/2012-11-05/resources-1.json +0 -232
- data/apis/sqs/2012-11-05/smoke.json +0 -18
- data/apis/ssm/2014-11-06/api-2.json +0 -8913
- data/apis/ssm/2014-11-06/examples-1.json +0 -5
- data/apis/ssm/2014-11-06/paginators-1.json +0 -55
- data/apis/ssm/2014-11-06/smoke.json +0 -18
- data/apis/states/2016-11-23/api-2.json +0 -1372
- data/apis/states/2016-11-23/examples-1.json +0 -5
- data/apis/states/2016-11-23/paginators-1.json +0 -28
- data/apis/states/2016-11-23/smoke.json +0 -11
- data/apis/storagegateway/2013-06-30/api-2.json +0 -3160
- data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
- data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
- data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
- data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
- data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/api-2.json +0 -562
- data/apis/sts/2011-06-15/examples-1.json +0 -207
- data/apis/sts/2011-06-15/paginators-1.json +0 -4
- data/apis/sts/2011-06-15/smoke.json +0 -19
- data/apis/support/2013-04-15/api-2.json +0 -772
- data/apis/support/2013-04-15/examples-1.json +0 -5
- data/apis/support/2013-04-15/paginators-1.json +0 -25
- data/apis/swf/2012-01-25/api-2.json +0 -2792
- data/apis/swf/2012-01-25/examples-1.json +0 -5
- data/apis/swf/2012-01-25/paginators-1.json +0 -46
- data/apis/textract/2018-06-27/api-2.json +0 -572
- data/apis/textract/2018-06-27/examples-1.json +0 -5
- data/apis/textract/2018-06-27/paginators-1.json +0 -4
- data/apis/transcribe/2017-10-26/api-2.json +0 -504
- data/apis/transcribe/2017-10-26/examples-1.json +0 -5
- data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
- data/apis/transfer/2018-11-05/api-2.json +0 -851
- data/apis/transfer/2018-11-05/examples-1.json +0 -5
- data/apis/transfer/2018-11-05/paginators-1.json +0 -19
- data/apis/translate/2017-07-01/api-2.json +0 -408
- data/apis/translate/2017-07-01/examples-1.json +0 -5
- data/apis/translate/2017-07-01/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
- data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
- data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
- data/apis/waf-regional/2016-11-28/smoke.json +0 -21
- data/apis/waf/2015-08-24/api-2.json +0 -3857
- data/apis/waf/2015-08-24/examples-1.json +0 -1017
- data/apis/waf/2015-08-24/paginators-1.json +0 -4
- data/apis/waf/2015-08-24/smoke.json +0 -21
- data/apis/workdocs/2016-05-01/api-2.json +0 -2899
- data/apis/workdocs/2016-05-01/examples-1.json +0 -5
- data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
- data/apis/worklink/2018-09-25/api-2.json +0 -1266
- data/apis/worklink/2018-09-25/examples-1.json +0 -5
- data/apis/worklink/2018-09-25/paginators-1.json +0 -29
- data/apis/workmail/2017-10-01/api-2.json +0 -1560
- data/apis/workmail/2017-10-01/examples-1.json +0 -5
- data/apis/workmail/2017-10-01/paginators-1.json +0 -44
- data/apis/workspaces/2015-04-08/api-2.json +0 -1699
- data/apis/workspaces/2015-04-08/examples-1.json +0 -5
- data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
- data/apis/workspaces/2015-04-08/smoke.json +0 -18
- data/apis/xray/2016-04-12/api-2.json +0 -1352
- data/apis/xray/2016-04-12/examples-1.json +0 -5
- data/apis/xray/2016-04-12/paginators-1.json +0 -59
- data/bin/aws.rb +0 -180
- data/endpoints.json +0 -4601
- data/lib/aws-sdk-core/acm.rb +0 -7
- data/lib/aws-sdk-core/acmpca.rb +0 -7
- data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
- data/lib/aws-sdk-core/amplify.rb +0 -6
- data/lib/aws-sdk-core/api/builder.rb +0 -129
- data/lib/aws-sdk-core/api/customizations.rb +0 -299
- data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
- data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
- data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
- data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
- data/lib/aws-sdk-core/api/shape_map.rb +0 -146
- data/lib/aws-sdk-core/apigateway.rb +0 -6
- data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
- data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
- data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
- data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
- data/lib/aws-sdk-core/applicationinsights.rb +0 -6
- data/lib/aws-sdk-core/appmesh.rb +0 -6
- data/lib/aws-sdk-core/appstream.rb +0 -7
- data/lib/aws-sdk-core/appsync.rb +0 -6
- data/lib/aws-sdk-core/athena.rb +0 -6
- data/lib/aws-sdk-core/autoscaling.rb +0 -8
- data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
- data/lib/aws-sdk-core/backup.rb +0 -6
- data/lib/aws-sdk-core/batch.rb +0 -6
- data/lib/aws-sdk-core/budgets.rb +0 -6
- data/lib/aws-sdk-core/checksums.rb +0 -51
- data/lib/aws-sdk-core/chime.rb +0 -6
- data/lib/aws-sdk-core/client.rb +0 -62
- data/lib/aws-sdk-core/client_waiters.rb +0 -120
- data/lib/aws-sdk-core/cloud9.rb +0 -6
- data/lib/aws-sdk-core/clouddirectory.rb +0 -6
- data/lib/aws-sdk-core/cloudformation.rb +0 -8
- data/lib/aws-sdk-core/cloudfront.rb +0 -17
- data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
- data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
- data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
- data/lib/aws-sdk-core/cloudhsm.rb +0 -6
- data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
- data/lib/aws-sdk-core/cloudsearch.rb +0 -5
- data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
- data/lib/aws-sdk-core/cloudtrail.rb +0 -6
- data/lib/aws-sdk-core/cloudwatch.rb +0 -8
- data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
- data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
- data/lib/aws-sdk-core/codebuild.rb +0 -6
- data/lib/aws-sdk-core/codecommit.rb +0 -6
- data/lib/aws-sdk-core/codedeploy.rb +0 -7
- data/lib/aws-sdk-core/codepipeline.rb +0 -6
- data/lib/aws-sdk-core/codestar.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
- data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
- data/lib/aws-sdk-core/cognitosync.rb +0 -4
- data/lib/aws-sdk-core/comprehend.rb +0 -6
- data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
- data/lib/aws-sdk-core/configservice.rb +0 -6
- data/lib/aws-sdk-core/connect.rb +0 -6
- data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
- data/lib/aws-sdk-core/costexplorer.rb +0 -6
- data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
- data/lib/aws-sdk-core/datapipeline.rb +0 -5
- data/lib/aws-sdk-core/datasync.rb +0 -6
- data/lib/aws-sdk-core/dax.rb +0 -6
- data/lib/aws-sdk-core/devicefarm.rb +0 -6
- data/lib/aws-sdk-core/directconnect.rb +0 -6
- data/lib/aws-sdk-core/directoryservice.rb +0 -6
- data/lib/aws-sdk-core/dlm.rb +0 -6
- data/lib/aws-sdk-core/docdb.rb +0 -7
- data/lib/aws-sdk-core/dynamodb.rb +0 -40
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
- data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
- data/lib/aws-sdk-core/ec2.rb +0 -8
- data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
- data/lib/aws-sdk-core/ecr.rb +0 -6
- data/lib/aws-sdk-core/ecs.rb +0 -7
- data/lib/aws-sdk-core/efs.rb +0 -6
- data/lib/aws-sdk-core/eks.rb +0 -7
- data/lib/aws-sdk-core/elasticache.rb +0 -7
- data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
- data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
- data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
- data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
- data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
- data/lib/aws-sdk-core/empty_structure.rb +0 -3
- data/lib/aws-sdk-core/emr.rb +0 -7
- data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
- data/lib/aws-sdk-core/eventbridge.rb +0 -6
- data/lib/aws-sdk-core/firehose.rb +0 -6
- data/lib/aws-sdk-core/fms.rb +0 -6
- data/lib/aws-sdk-core/fsx.rb +0 -6
- data/lib/aws-sdk-core/gamelift.rb +0 -6
- data/lib/aws-sdk-core/glacier.rb +0 -8
- data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
- data/lib/aws-sdk-core/glue.rb +0 -6
- data/lib/aws-sdk-core/greengrass.rb +0 -4
- data/lib/aws-sdk-core/groundstation.rb +0 -6
- data/lib/aws-sdk-core/guardduty.rb +0 -6
- data/lib/aws-sdk-core/health.rb +0 -6
- data/lib/aws-sdk-core/iam.rb +0 -8
- data/lib/aws-sdk-core/importexport.rb +0 -5
- data/lib/aws-sdk-core/inspector.rb +0 -6
- data/lib/aws-sdk-core/iot.rb +0 -6
- data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
- data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
- data/lib/aws-sdk-core/iotanalytics.rb +0 -6
- data/lib/aws-sdk-core/iotdataplane.rb +0 -4
- data/lib/aws-sdk-core/iotevents.rb +0 -6
- data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
- data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
- data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
- data/lib/aws-sdk-core/kafka.rb +0 -5
- data/lib/aws-sdk-core/kinesis.rb +0 -7
- data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
- data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
- data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
- data/lib/aws-sdk-core/kms.rb +0 -6
- data/lib/aws-sdk-core/lakeformation.rb +0 -6
- data/lib/aws-sdk-core/lambda.rb +0 -7
- data/lib/aws-sdk-core/lambdapreview.rb +0 -5
- data/lib/aws-sdk-core/lex.rb +0 -6
- data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
- data/lib/aws-sdk-core/licensemanager.rb +0 -6
- data/lib/aws-sdk-core/lightsail.rb +0 -6
- data/lib/aws-sdk-core/machinelearning.rb +0 -7
- data/lib/aws-sdk-core/macie.rb +0 -6
- data/lib/aws-sdk-core/managedblockchain.rb +0 -6
- data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
- data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
- data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
- data/lib/aws-sdk-core/mediaconnect.rb +0 -5
- data/lib/aws-sdk-core/mediaconvert.rb +0 -5
- data/lib/aws-sdk-core/medialive.rb +0 -6
- data/lib/aws-sdk-core/mediapackage.rb +0 -5
- data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
- data/lib/aws-sdk-core/mediastore.rb +0 -6
- data/lib/aws-sdk-core/mediastoredata.rb +0 -6
- data/lib/aws-sdk-core/mediatailor.rb +0 -5
- data/lib/aws-sdk-core/migrationhub.rb +0 -6
- data/lib/aws-sdk-core/mobile.rb +0 -6
- data/lib/aws-sdk-core/mq.rb +0 -5
- data/lib/aws-sdk-core/mturk.rb +0 -6
- data/lib/aws-sdk-core/neptune.rb +0 -7
- data/lib/aws-sdk-core/opsworks.rb +0 -8
- data/lib/aws-sdk-core/opsworkscm.rb +0 -7
- data/lib/aws-sdk-core/organizations.rb +0 -6
- data/lib/aws-sdk-core/partitions.rb +0 -174
- data/lib/aws-sdk-core/partitions/partition.rb +0 -95
- data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
- data/lib/aws-sdk-core/partitions/region.rb +0 -66
- data/lib/aws-sdk-core/partitions/service.rb +0 -75
- data/lib/aws-sdk-core/personalize.rb +0 -6
- data/lib/aws-sdk-core/personalizeevents.rb +0 -6
- data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
- data/lib/aws-sdk-core/pi.rb +0 -6
- data/lib/aws-sdk-core/pinpoint.rb +0 -5
- data/lib/aws-sdk-core/pinpointemail.rb +0 -6
- data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
- data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
- data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
- data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
- data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
- data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
- data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
- data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
- data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
- data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
- data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
- data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
- data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
- data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
- data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
- data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
- data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
- data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
- data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
- data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
- data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
- data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
- data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
- data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
- data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
- data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
- data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
- data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
- data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
- data/lib/aws-sdk-core/polly.rb +0 -14
- data/lib/aws-sdk-core/polly/presigner.rb +0 -70
- data/lib/aws-sdk-core/pricing.rb +0 -6
- data/lib/aws-sdk-core/quicksight.rb +0 -6
- data/lib/aws-sdk-core/ram.rb +0 -6
- data/lib/aws-sdk-core/rds.rb +0 -16
- data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
- data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
- data/lib/aws-sdk-core/redshift.rb +0 -7
- data/lib/aws-sdk-core/rekognition.rb +0 -6
- data/lib/aws-sdk-core/resourcegroups.rb +0 -6
- data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
- data/lib/aws-sdk-core/robomaker.rb +0 -6
- data/lib/aws-sdk-core/route53.rb +0 -7
- data/lib/aws-sdk-core/route53domains.rb +0 -6
- data/lib/aws-sdk-core/route53resolver.rb +0 -6
- data/lib/aws-sdk-core/s3.rb +0 -26
- data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
- data/lib/aws-sdk-core/s3/presigner.rb +0 -116
- data/lib/aws-sdk-core/s3control.rb +0 -6
- data/lib/aws-sdk-core/sagemaker.rb +0 -7
- data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
- data/lib/aws-sdk-core/secretsmanager.rb +0 -6
- data/lib/aws-sdk-core/securityhub.rb +0 -6
- data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
- data/lib/aws-sdk-core/service.rb +0 -4
- data/lib/aws-sdk-core/servicecatalog.rb +0 -6
- data/lib/aws-sdk-core/servicediscovery.rb +0 -6
- data/lib/aws-sdk-core/servicequotas.rb +0 -6
- data/lib/aws-sdk-core/ses.rb +0 -7
- data/lib/aws-sdk-core/shield.rb +0 -6
- data/lib/aws-sdk-core/signer.rb +0 -7
- data/lib/aws-sdk-core/signers/base.rb +0 -31
- data/lib/aws-sdk-core/signers/s3.rb +0 -185
- data/lib/aws-sdk-core/signers/v2.rb +0 -51
- data/lib/aws-sdk-core/signers/v3.rb +0 -34
- data/lib/aws-sdk-core/signers/v4.rb +0 -234
- data/lib/aws-sdk-core/simpledb.rb +0 -5
- data/lib/aws-sdk-core/sms.rb +0 -6
- data/lib/aws-sdk-core/snowball.rb +0 -6
- data/lib/aws-sdk-core/sns.rb +0 -7
- data/lib/aws-sdk-core/sqs.rb +0 -7
- data/lib/aws-sdk-core/ssm.rb +0 -6
- data/lib/aws-sdk-core/states.rb +0 -6
- data/lib/aws-sdk-core/storagegateway.rb +0 -6
- data/lib/aws-sdk-core/sts.rb +0 -6
- data/lib/aws-sdk-core/support.rb +0 -6
- data/lib/aws-sdk-core/swf.rb +0 -6
- data/lib/aws-sdk-core/textract.rb +0 -6
- data/lib/aws-sdk-core/transcribeservice.rb +0 -6
- data/lib/aws-sdk-core/transfer.rb +0 -6
- data/lib/aws-sdk-core/translate.rb +0 -6
- data/lib/aws-sdk-core/tree_hash.rb +0 -69
- data/lib/aws-sdk-core/version.rb +0 -3
- data/lib/aws-sdk-core/waf.rb +0 -6
- data/lib/aws-sdk-core/wafregional.rb +0 -6
- data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
- data/lib/aws-sdk-core/waiters/provider.rb +0 -35
- data/lib/aws-sdk-core/workdocs.rb +0 -6
- data/lib/aws-sdk-core/worklink.rb +0 -6
- data/lib/aws-sdk-core/workmail.rb +0 -6
- data/lib/aws-sdk-core/workspaces.rb +0 -6
- data/lib/aws-sdk-core/xray.rb +0 -6
- data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
- data/service-models.json +0 -749
@@ -1,308 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "1.0",
|
3
|
-
"examples": {
|
4
|
-
"CreateEnvironmentEC2": [
|
5
|
-
{
|
6
|
-
"input": {
|
7
|
-
"name": "my-demo-environment",
|
8
|
-
"automaticStopTimeMinutes": 60,
|
9
|
-
"description": "This is my demonstration environment.",
|
10
|
-
"instanceType": "t2.micro",
|
11
|
-
"ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser",
|
12
|
-
"subnetId": "subnet-1fab8aEX"
|
13
|
-
},
|
14
|
-
"output": {
|
15
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
|
16
|
-
},
|
17
|
-
"comments": {
|
18
|
-
"input": {
|
19
|
-
},
|
20
|
-
"output": {
|
21
|
-
}
|
22
|
-
},
|
23
|
-
"description": "",
|
24
|
-
"id": "createenvironmentec2-1516821730547",
|
25
|
-
"title": "CreateEnvironmentEC2"
|
26
|
-
}
|
27
|
-
],
|
28
|
-
"CreateEnvironmentMembership": [
|
29
|
-
{
|
30
|
-
"input": {
|
31
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
32
|
-
"permissions": "read-write",
|
33
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
|
34
|
-
},
|
35
|
-
"output": {
|
36
|
-
"membership": {
|
37
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
38
|
-
"permissions": "read-write",
|
39
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
|
40
|
-
"userId": "AIDAJ3BA6O2FMJWCWXHEX"
|
41
|
-
}
|
42
|
-
},
|
43
|
-
"comments": {
|
44
|
-
"input": {
|
45
|
-
},
|
46
|
-
"output": {
|
47
|
-
}
|
48
|
-
},
|
49
|
-
"description": "",
|
50
|
-
"id": "createenvironmentmembership-1516822583452",
|
51
|
-
"title": "CreateEnvironmentMembership"
|
52
|
-
}
|
53
|
-
],
|
54
|
-
"DeleteEnvironment": [
|
55
|
-
{
|
56
|
-
"input": {
|
57
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
|
58
|
-
},
|
59
|
-
"output": {
|
60
|
-
},
|
61
|
-
"comments": {
|
62
|
-
"input": {
|
63
|
-
},
|
64
|
-
"output": {
|
65
|
-
}
|
66
|
-
},
|
67
|
-
"description": "",
|
68
|
-
"id": "deleteenvironment-1516822903149",
|
69
|
-
"title": "DeleteEnvironment"
|
70
|
-
}
|
71
|
-
],
|
72
|
-
"DeleteEnvironmentMembership": [
|
73
|
-
{
|
74
|
-
"input": {
|
75
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
76
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
|
77
|
-
},
|
78
|
-
"output": {
|
79
|
-
},
|
80
|
-
"comments": {
|
81
|
-
"input": {
|
82
|
-
},
|
83
|
-
"output": {
|
84
|
-
}
|
85
|
-
},
|
86
|
-
"description": "",
|
87
|
-
"id": "deleteenvironmentmembership-1516822975655",
|
88
|
-
"title": "DeleteEnvironmentMembership"
|
89
|
-
}
|
90
|
-
],
|
91
|
-
"DescribeEnvironmentMemberships": [
|
92
|
-
{
|
93
|
-
"input": {
|
94
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
|
95
|
-
},
|
96
|
-
"output": {
|
97
|
-
"memberships": [
|
98
|
-
{
|
99
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
100
|
-
"permissions": "read-write",
|
101
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
|
102
|
-
"userId": "AIDAJ3BA6O2FMJWCWXHEX"
|
103
|
-
},
|
104
|
-
{
|
105
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
106
|
-
"permissions": "owner",
|
107
|
-
"userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
|
108
|
-
"userId": "AIDAJNUEDQAQWFELJDLEX"
|
109
|
-
}
|
110
|
-
]
|
111
|
-
},
|
112
|
-
"comments": {
|
113
|
-
"input": {
|
114
|
-
},
|
115
|
-
"output": {
|
116
|
-
}
|
117
|
-
},
|
118
|
-
"description": "The following example gets information about all of the environment members for the specified AWS Cloud9 development environment.",
|
119
|
-
"id": "describeenvironmentmemberships1-1516823070453",
|
120
|
-
"title": "DescribeEnvironmentMemberships1"
|
121
|
-
},
|
122
|
-
{
|
123
|
-
"input": {
|
124
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
125
|
-
"permissions": [
|
126
|
-
"owner"
|
127
|
-
]
|
128
|
-
},
|
129
|
-
"output": {
|
130
|
-
"memberships": [
|
131
|
-
{
|
132
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
133
|
-
"permissions": "owner",
|
134
|
-
"userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
|
135
|
-
"userId": "AIDAJNUEDQAQWFELJDLEX"
|
136
|
-
}
|
137
|
-
]
|
138
|
-
},
|
139
|
-
"comments": {
|
140
|
-
"input": {
|
141
|
-
},
|
142
|
-
"output": {
|
143
|
-
}
|
144
|
-
},
|
145
|
-
"description": "The following example gets information about the owner of the specified AWS Cloud9 development environment.",
|
146
|
-
"id": "describeenvironmentmemberships2-1516823191355",
|
147
|
-
"title": "DescribeEnvironmentMemberships2"
|
148
|
-
},
|
149
|
-
{
|
150
|
-
"input": {
|
151
|
-
"userArn": "arn:aws:iam::123456789012:user/MyDemoUser"
|
152
|
-
},
|
153
|
-
"output": {
|
154
|
-
"memberships": [
|
155
|
-
{
|
156
|
-
"environmentId": "10a75714bd494714929e7f5ec4125aEX",
|
157
|
-
"lastAccess": "2018-01-19T11:06:13Z",
|
158
|
-
"permissions": "owner",
|
159
|
-
"userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
|
160
|
-
"userId": "AIDAJNUEDQAQWFELJDLEX"
|
161
|
-
},
|
162
|
-
{
|
163
|
-
"environmentId": "12bfc3cd537f41cb9776f8af5525c9EX",
|
164
|
-
"lastAccess": "2018-01-19T11:39:19Z",
|
165
|
-
"permissions": "owner",
|
166
|
-
"userArn": "arn:aws:iam::123456789012:user/MyDemoUser",
|
167
|
-
"userId": "AIDAJNUEDQAQWFELJDLEX"
|
168
|
-
}
|
169
|
-
]
|
170
|
-
},
|
171
|
-
"comments": {
|
172
|
-
"input": {
|
173
|
-
},
|
174
|
-
"output": {
|
175
|
-
}
|
176
|
-
},
|
177
|
-
"description": "The following example gets AWS Cloud9 development environment membership information for the specified user.",
|
178
|
-
"id": "describeenvironmentmemberships3-1516823268793",
|
179
|
-
"title": "DescribeEnvironmentMemberships3"
|
180
|
-
}
|
181
|
-
],
|
182
|
-
"DescribeEnvironmentStatus": [
|
183
|
-
{
|
184
|
-
"input": {
|
185
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
|
186
|
-
},
|
187
|
-
"output": {
|
188
|
-
"message": "Environment is ready to use",
|
189
|
-
"status": "ready"
|
190
|
-
},
|
191
|
-
"comments": {
|
192
|
-
"input": {
|
193
|
-
},
|
194
|
-
"output": {
|
195
|
-
}
|
196
|
-
},
|
197
|
-
"description": "",
|
198
|
-
"id": "describeenvironmentstatus-1516823462133",
|
199
|
-
"title": "DescribeEnvironmentStatus"
|
200
|
-
}
|
201
|
-
],
|
202
|
-
"DescribeEnvironments": [
|
203
|
-
{
|
204
|
-
"input": {
|
205
|
-
"environmentIds": [
|
206
|
-
"8d9967e2f0624182b74e7690ad69ebEX",
|
207
|
-
"349c86d4579e4e7298d500ff57a6b2EX"
|
208
|
-
]
|
209
|
-
},
|
210
|
-
"output": {
|
211
|
-
"environments": [
|
212
|
-
{
|
213
|
-
"name": "my-demo-environment",
|
214
|
-
"type": "ec2",
|
215
|
-
"arn": "arn:aws:cloud9:us-east-2:123456789012:environment:8d9967e2f0624182b74e7690ad69ebEX",
|
216
|
-
"description": "This is my demonstration environment.",
|
217
|
-
"id": "8d9967e2f0624182b74e7690ad69ebEX",
|
218
|
-
"ownerArn": "arn:aws:iam::123456789012:user/MyDemoUser"
|
219
|
-
},
|
220
|
-
{
|
221
|
-
"name": "another-demo-environment",
|
222
|
-
"type": "ssh",
|
223
|
-
"arn": "arn:aws:cloud9:us-east-2:123456789012:environment:349c86d4579e4e7298d500ff57a6b2EX",
|
224
|
-
"id": "349c86d4579e4e7298d500ff57a6b2EX",
|
225
|
-
"ownerArn": "arn:aws:sts::123456789012:assumed-role/AnotherDemoUser/AnotherDemoUser"
|
226
|
-
}
|
227
|
-
]
|
228
|
-
},
|
229
|
-
"comments": {
|
230
|
-
"input": {
|
231
|
-
},
|
232
|
-
"output": {
|
233
|
-
}
|
234
|
-
},
|
235
|
-
"description": "",
|
236
|
-
"id": "describeenvironments-1516823568291",
|
237
|
-
"title": "DescribeEnvironments"
|
238
|
-
}
|
239
|
-
],
|
240
|
-
"ListEnvironments": [
|
241
|
-
{
|
242
|
-
"input": {
|
243
|
-
},
|
244
|
-
"output": {
|
245
|
-
"environmentIds": [
|
246
|
-
"349c86d4579e4e7298d500ff57a6b2EX",
|
247
|
-
"45a3da47af0840f2b0c0824f5ee232EX"
|
248
|
-
]
|
249
|
-
},
|
250
|
-
"comments": {
|
251
|
-
"input": {
|
252
|
-
},
|
253
|
-
"output": {
|
254
|
-
}
|
255
|
-
},
|
256
|
-
"description": "",
|
257
|
-
"id": "listenvironments-1516823687205",
|
258
|
-
"title": "ListEnvironments"
|
259
|
-
}
|
260
|
-
],
|
261
|
-
"UpdateEnvironment": [
|
262
|
-
{
|
263
|
-
"input": {
|
264
|
-
"name": "my-changed-demo-environment",
|
265
|
-
"description": "This is my changed demonstration environment.",
|
266
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX"
|
267
|
-
},
|
268
|
-
"output": {
|
269
|
-
},
|
270
|
-
"comments": {
|
271
|
-
"input": {
|
272
|
-
},
|
273
|
-
"output": {
|
274
|
-
}
|
275
|
-
},
|
276
|
-
"description": "",
|
277
|
-
"id": "updateenvironment-1516823781910",
|
278
|
-
"title": "UpdateEnvironment"
|
279
|
-
}
|
280
|
-
],
|
281
|
-
"UpdateEnvironmentMembership": [
|
282
|
-
{
|
283
|
-
"input": {
|
284
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69ebEX",
|
285
|
-
"permissions": "read-only",
|
286
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser"
|
287
|
-
},
|
288
|
-
"output": {
|
289
|
-
"membership": {
|
290
|
-
"environmentId": "8d9967e2f0624182b74e7690ad69eb31",
|
291
|
-
"permissions": "read-only",
|
292
|
-
"userArn": "arn:aws:iam::123456789012:user/AnotherDemoUser",
|
293
|
-
"userId": "AIDAJ3BA6O2FMJWCWXHEX"
|
294
|
-
}
|
295
|
-
},
|
296
|
-
"comments": {
|
297
|
-
"input": {
|
298
|
-
},
|
299
|
-
"output": {
|
300
|
-
}
|
301
|
-
},
|
302
|
-
"description": "",
|
303
|
-
"id": "updateenvironmentmembership-1516823876645",
|
304
|
-
"title": "UpdateEnvironmentMembership"
|
305
|
-
}
|
306
|
-
]
|
307
|
-
}
|
308
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"pagination": {
|
3
|
-
"DescribeEnvironmentMemberships": {
|
4
|
-
"input_token": "nextToken",
|
5
|
-
"output_token": "nextToken",
|
6
|
-
"limit_key": "maxResults"
|
7
|
-
},
|
8
|
-
"ListEnvironments": {
|
9
|
-
"input_token": "nextToken",
|
10
|
-
"output_token": "nextToken",
|
11
|
-
"limit_key": "maxResults"
|
12
|
-
}
|
13
|
-
}
|
14
|
-
}
|
@@ -1,4244 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version":"2.0",
|
3
|
-
"metadata":{
|
4
|
-
"apiVersion":"2016-05-10",
|
5
|
-
"endpointPrefix":"clouddirectory",
|
6
|
-
"protocol":"rest-json",
|
7
|
-
"serviceFullName":"Amazon CloudDirectory",
|
8
|
-
"signatureVersion":"v4",
|
9
|
-
"signingName":"clouddirectory",
|
10
|
-
"uid":"clouddirectory-2016-05-10"
|
11
|
-
},
|
12
|
-
"operations":{
|
13
|
-
"AddFacetToObject":{
|
14
|
-
"name":"AddFacetToObject",
|
15
|
-
"http":{
|
16
|
-
"method":"PUT",
|
17
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/facets",
|
18
|
-
"responseCode":200
|
19
|
-
},
|
20
|
-
"input":{"shape":"AddFacetToObjectRequest"},
|
21
|
-
"output":{"shape":"AddFacetToObjectResponse"},
|
22
|
-
"errors":[
|
23
|
-
{"shape":"InternalServiceException"},
|
24
|
-
{"shape":"InvalidArnException"},
|
25
|
-
{"shape":"RetryableConflictException"},
|
26
|
-
{"shape":"ValidationException"},
|
27
|
-
{"shape":"LimitExceededException"},
|
28
|
-
{"shape":"AccessDeniedException"},
|
29
|
-
{"shape":"DirectoryNotEnabledException"},
|
30
|
-
{"shape":"ResourceNotFoundException"},
|
31
|
-
{"shape":"FacetValidationException"}
|
32
|
-
]
|
33
|
-
},
|
34
|
-
"ApplySchema":{
|
35
|
-
"name":"ApplySchema",
|
36
|
-
"http":{
|
37
|
-
"method":"PUT",
|
38
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/apply",
|
39
|
-
"responseCode":200
|
40
|
-
},
|
41
|
-
"input":{"shape":"ApplySchemaRequest"},
|
42
|
-
"output":{"shape":"ApplySchemaResponse"},
|
43
|
-
"errors":[
|
44
|
-
{"shape":"InternalServiceException"},
|
45
|
-
{"shape":"InvalidArnException"},
|
46
|
-
{"shape":"RetryableConflictException"},
|
47
|
-
{"shape":"ValidationException"},
|
48
|
-
{"shape":"LimitExceededException"},
|
49
|
-
{"shape":"AccessDeniedException"},
|
50
|
-
{"shape":"ResourceNotFoundException"},
|
51
|
-
{"shape":"InvalidAttachmentException"}
|
52
|
-
]
|
53
|
-
},
|
54
|
-
"AttachObject":{
|
55
|
-
"name":"AttachObject",
|
56
|
-
"http":{
|
57
|
-
"method":"PUT",
|
58
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/attach",
|
59
|
-
"responseCode":200
|
60
|
-
},
|
61
|
-
"input":{"shape":"AttachObjectRequest"},
|
62
|
-
"output":{"shape":"AttachObjectResponse"},
|
63
|
-
"errors":[
|
64
|
-
{"shape":"InternalServiceException"},
|
65
|
-
{"shape":"InvalidArnException"},
|
66
|
-
{"shape":"RetryableConflictException"},
|
67
|
-
{"shape":"ValidationException"},
|
68
|
-
{"shape":"LimitExceededException"},
|
69
|
-
{"shape":"AccessDeniedException"},
|
70
|
-
{"shape":"DirectoryNotEnabledException"},
|
71
|
-
{"shape":"ResourceNotFoundException"},
|
72
|
-
{"shape":"LinkNameAlreadyInUseException"},
|
73
|
-
{"shape":"InvalidAttachmentException"},
|
74
|
-
{"shape":"ValidationException"},
|
75
|
-
{"shape":"FacetValidationException"}
|
76
|
-
]
|
77
|
-
},
|
78
|
-
"AttachPolicy":{
|
79
|
-
"name":"AttachPolicy",
|
80
|
-
"http":{
|
81
|
-
"method":"PUT",
|
82
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/policy/attach",
|
83
|
-
"responseCode":200
|
84
|
-
},
|
85
|
-
"input":{"shape":"AttachPolicyRequest"},
|
86
|
-
"output":{"shape":"AttachPolicyResponse"},
|
87
|
-
"errors":[
|
88
|
-
{"shape":"InternalServiceException"},
|
89
|
-
{"shape":"InvalidArnException"},
|
90
|
-
{"shape":"RetryableConflictException"},
|
91
|
-
{"shape":"ValidationException"},
|
92
|
-
{"shape":"LimitExceededException"},
|
93
|
-
{"shape":"AccessDeniedException"},
|
94
|
-
{"shape":"DirectoryNotEnabledException"},
|
95
|
-
{"shape":"ResourceNotFoundException"},
|
96
|
-
{"shape":"NotPolicyException"}
|
97
|
-
]
|
98
|
-
},
|
99
|
-
"AttachToIndex":{
|
100
|
-
"name":"AttachToIndex",
|
101
|
-
"http":{
|
102
|
-
"method":"PUT",
|
103
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/index/attach",
|
104
|
-
"responseCode":200
|
105
|
-
},
|
106
|
-
"input":{"shape":"AttachToIndexRequest"},
|
107
|
-
"output":{"shape":"AttachToIndexResponse"},
|
108
|
-
"errors":[
|
109
|
-
{"shape":"InternalServiceException"},
|
110
|
-
{"shape":"InvalidArnException"},
|
111
|
-
{"shape":"RetryableConflictException"},
|
112
|
-
{"shape":"ValidationException"},
|
113
|
-
{"shape":"LimitExceededException"},
|
114
|
-
{"shape":"AccessDeniedException"},
|
115
|
-
{"shape":"DirectoryNotEnabledException"},
|
116
|
-
{"shape":"InvalidAttachmentException"},
|
117
|
-
{"shape":"ResourceNotFoundException"},
|
118
|
-
{"shape":"LinkNameAlreadyInUseException"},
|
119
|
-
{"shape":"IndexedAttributeMissingException"},
|
120
|
-
{"shape":"NotIndexException"}
|
121
|
-
]
|
122
|
-
},
|
123
|
-
"AttachTypedLink":{
|
124
|
-
"name":"AttachTypedLink",
|
125
|
-
"http":{
|
126
|
-
"method":"PUT",
|
127
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attach",
|
128
|
-
"responseCode":200
|
129
|
-
},
|
130
|
-
"input":{"shape":"AttachTypedLinkRequest"},
|
131
|
-
"output":{"shape":"AttachTypedLinkResponse"},
|
132
|
-
"errors":[
|
133
|
-
{"shape":"InternalServiceException"},
|
134
|
-
{"shape":"InvalidArnException"},
|
135
|
-
{"shape":"RetryableConflictException"},
|
136
|
-
{"shape":"ValidationException"},
|
137
|
-
{"shape":"LimitExceededException"},
|
138
|
-
{"shape":"AccessDeniedException"},
|
139
|
-
{"shape":"DirectoryNotEnabledException"},
|
140
|
-
{"shape":"ResourceNotFoundException"},
|
141
|
-
{"shape":"InvalidAttachmentException"},
|
142
|
-
{"shape":"ValidationException"},
|
143
|
-
{"shape":"FacetValidationException"}
|
144
|
-
]
|
145
|
-
},
|
146
|
-
"BatchRead":{
|
147
|
-
"name":"BatchRead",
|
148
|
-
"http":{
|
149
|
-
"method":"POST",
|
150
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/batchread",
|
151
|
-
"responseCode":200
|
152
|
-
},
|
153
|
-
"input":{"shape":"BatchReadRequest"},
|
154
|
-
"output":{"shape":"BatchReadResponse"},
|
155
|
-
"errors":[
|
156
|
-
{"shape":"InternalServiceException"},
|
157
|
-
{"shape":"InvalidArnException"},
|
158
|
-
{"shape":"RetryableConflictException"},
|
159
|
-
{"shape":"ValidationException"},
|
160
|
-
{"shape":"LimitExceededException"},
|
161
|
-
{"shape":"AccessDeniedException"},
|
162
|
-
{"shape":"DirectoryNotEnabledException"}
|
163
|
-
]
|
164
|
-
},
|
165
|
-
"BatchWrite":{
|
166
|
-
"name":"BatchWrite",
|
167
|
-
"http":{
|
168
|
-
"method":"PUT",
|
169
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/batchwrite",
|
170
|
-
"responseCode":200
|
171
|
-
},
|
172
|
-
"input":{"shape":"BatchWriteRequest"},
|
173
|
-
"output":{"shape":"BatchWriteResponse"},
|
174
|
-
"errors":[
|
175
|
-
{"shape":"InternalServiceException"},
|
176
|
-
{"shape":"InvalidArnException"},
|
177
|
-
{"shape":"RetryableConflictException"},
|
178
|
-
{"shape":"ValidationException"},
|
179
|
-
{"shape":"LimitExceededException"},
|
180
|
-
{"shape":"AccessDeniedException"},
|
181
|
-
{"shape":"DirectoryNotEnabledException"},
|
182
|
-
{"shape":"BatchWriteException"}
|
183
|
-
]
|
184
|
-
},
|
185
|
-
"CreateDirectory":{
|
186
|
-
"name":"CreateDirectory",
|
187
|
-
"http":{
|
188
|
-
"method":"PUT",
|
189
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory/create",
|
190
|
-
"responseCode":200
|
191
|
-
},
|
192
|
-
"input":{"shape":"CreateDirectoryRequest"},
|
193
|
-
"output":{"shape":"CreateDirectoryResponse"},
|
194
|
-
"errors":[
|
195
|
-
{"shape":"InternalServiceException"},
|
196
|
-
{"shape":"InvalidArnException"},
|
197
|
-
{"shape":"RetryableConflictException"},
|
198
|
-
{"shape":"ValidationException"},
|
199
|
-
{"shape":"LimitExceededException"},
|
200
|
-
{"shape":"AccessDeniedException"},
|
201
|
-
{"shape":"DirectoryAlreadyExistsException"},
|
202
|
-
{"shape":"ResourceNotFoundException"}
|
203
|
-
]
|
204
|
-
},
|
205
|
-
"CreateFacet":{
|
206
|
-
"name":"CreateFacet",
|
207
|
-
"http":{
|
208
|
-
"method":"PUT",
|
209
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet/create",
|
210
|
-
"responseCode":200
|
211
|
-
},
|
212
|
-
"input":{"shape":"CreateFacetRequest"},
|
213
|
-
"output":{"shape":"CreateFacetResponse"},
|
214
|
-
"errors":[
|
215
|
-
{"shape":"InternalServiceException"},
|
216
|
-
{"shape":"InvalidArnException"},
|
217
|
-
{"shape":"RetryableConflictException"},
|
218
|
-
{"shape":"ValidationException"},
|
219
|
-
{"shape":"LimitExceededException"},
|
220
|
-
{"shape":"AccessDeniedException"},
|
221
|
-
{"shape":"ResourceNotFoundException"},
|
222
|
-
{"shape":"FacetAlreadyExistsException"},
|
223
|
-
{"shape":"InvalidRuleException"},
|
224
|
-
{"shape":"FacetValidationException"}
|
225
|
-
]
|
226
|
-
},
|
227
|
-
"CreateIndex":{
|
228
|
-
"name":"CreateIndex",
|
229
|
-
"http":{
|
230
|
-
"method":"PUT",
|
231
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/index",
|
232
|
-
"responseCode":200
|
233
|
-
},
|
234
|
-
"input":{"shape":"CreateIndexRequest"},
|
235
|
-
"output":{"shape":"CreateIndexResponse"},
|
236
|
-
"errors":[
|
237
|
-
{"shape":"InternalServiceException"},
|
238
|
-
{"shape":"InvalidArnException"},
|
239
|
-
{"shape":"RetryableConflictException"},
|
240
|
-
{"shape":"ValidationException"},
|
241
|
-
{"shape":"LimitExceededException"},
|
242
|
-
{"shape":"AccessDeniedException"},
|
243
|
-
{"shape":"DirectoryNotEnabledException"},
|
244
|
-
{"shape":"ResourceNotFoundException"},
|
245
|
-
{"shape":"FacetValidationException"},
|
246
|
-
{"shape":"LinkNameAlreadyInUseException"},
|
247
|
-
{"shape":"UnsupportedIndexTypeException"}
|
248
|
-
]
|
249
|
-
},
|
250
|
-
"CreateObject":{
|
251
|
-
"name":"CreateObject",
|
252
|
-
"http":{
|
253
|
-
"method":"PUT",
|
254
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object",
|
255
|
-
"responseCode":200
|
256
|
-
},
|
257
|
-
"input":{"shape":"CreateObjectRequest"},
|
258
|
-
"output":{"shape":"CreateObjectResponse"},
|
259
|
-
"errors":[
|
260
|
-
{"shape":"InternalServiceException"},
|
261
|
-
{"shape":"InvalidArnException"},
|
262
|
-
{"shape":"RetryableConflictException"},
|
263
|
-
{"shape":"ValidationException"},
|
264
|
-
{"shape":"LimitExceededException"},
|
265
|
-
{"shape":"AccessDeniedException"},
|
266
|
-
{"shape":"DirectoryNotEnabledException"},
|
267
|
-
{"shape":"ResourceNotFoundException"},
|
268
|
-
{"shape":"FacetValidationException"},
|
269
|
-
{"shape":"LinkNameAlreadyInUseException"},
|
270
|
-
{"shape":"UnsupportedIndexTypeException"}
|
271
|
-
]
|
272
|
-
},
|
273
|
-
"CreateSchema":{
|
274
|
-
"name":"CreateSchema",
|
275
|
-
"http":{
|
276
|
-
"method":"PUT",
|
277
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/create",
|
278
|
-
"responseCode":200
|
279
|
-
},
|
280
|
-
"input":{"shape":"CreateSchemaRequest"},
|
281
|
-
"output":{"shape":"CreateSchemaResponse"},
|
282
|
-
"errors":[
|
283
|
-
{"shape":"InternalServiceException"},
|
284
|
-
{"shape":"InvalidArnException"},
|
285
|
-
{"shape":"RetryableConflictException"},
|
286
|
-
{"shape":"ValidationException"},
|
287
|
-
{"shape":"LimitExceededException"},
|
288
|
-
{"shape":"AccessDeniedException"},
|
289
|
-
{"shape":"SchemaAlreadyExistsException"},
|
290
|
-
{"shape":"AccessDeniedException"}
|
291
|
-
]
|
292
|
-
},
|
293
|
-
"CreateTypedLinkFacet":{
|
294
|
-
"name":"CreateTypedLinkFacet",
|
295
|
-
"http":{
|
296
|
-
"method":"PUT",
|
297
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/create",
|
298
|
-
"responseCode":200
|
299
|
-
},
|
300
|
-
"input":{"shape":"CreateTypedLinkFacetRequest"},
|
301
|
-
"output":{"shape":"CreateTypedLinkFacetResponse"},
|
302
|
-
"errors":[
|
303
|
-
{"shape":"InternalServiceException"},
|
304
|
-
{"shape":"InvalidArnException"},
|
305
|
-
{"shape":"RetryableConflictException"},
|
306
|
-
{"shape":"ValidationException"},
|
307
|
-
{"shape":"LimitExceededException"},
|
308
|
-
{"shape":"AccessDeniedException"},
|
309
|
-
{"shape":"ResourceNotFoundException"},
|
310
|
-
{"shape":"FacetAlreadyExistsException"},
|
311
|
-
{"shape":"InvalidRuleException"},
|
312
|
-
{"shape":"FacetValidationException"}
|
313
|
-
]
|
314
|
-
},
|
315
|
-
"DeleteDirectory":{
|
316
|
-
"name":"DeleteDirectory",
|
317
|
-
"http":{
|
318
|
-
"method":"PUT",
|
319
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory",
|
320
|
-
"responseCode":200
|
321
|
-
},
|
322
|
-
"input":{"shape":"DeleteDirectoryRequest"},
|
323
|
-
"output":{"shape":"DeleteDirectoryResponse"},
|
324
|
-
"errors":[
|
325
|
-
{"shape":"ResourceNotFoundException"},
|
326
|
-
{"shape":"DirectoryNotDisabledException"},
|
327
|
-
{"shape":"InternalServiceException"},
|
328
|
-
{"shape":"ValidationException"},
|
329
|
-
{"shape":"LimitExceededException"},
|
330
|
-
{"shape":"AccessDeniedException"},
|
331
|
-
{"shape":"DirectoryDeletedException"},
|
332
|
-
{"shape":"RetryableConflictException"},
|
333
|
-
{"shape":"InvalidArnException"}
|
334
|
-
]
|
335
|
-
},
|
336
|
-
"DeleteFacet":{
|
337
|
-
"name":"DeleteFacet",
|
338
|
-
"http":{
|
339
|
-
"method":"PUT",
|
340
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet/delete",
|
341
|
-
"responseCode":200
|
342
|
-
},
|
343
|
-
"input":{"shape":"DeleteFacetRequest"},
|
344
|
-
"output":{"shape":"DeleteFacetResponse"},
|
345
|
-
"errors":[
|
346
|
-
{"shape":"InternalServiceException"},
|
347
|
-
{"shape":"InvalidArnException"},
|
348
|
-
{"shape":"RetryableConflictException"},
|
349
|
-
{"shape":"ValidationException"},
|
350
|
-
{"shape":"LimitExceededException"},
|
351
|
-
{"shape":"AccessDeniedException"},
|
352
|
-
{"shape":"ResourceNotFoundException"},
|
353
|
-
{"shape":"FacetNotFoundException"},
|
354
|
-
{"shape":"FacetInUseException"}
|
355
|
-
]
|
356
|
-
},
|
357
|
-
"DeleteObject":{
|
358
|
-
"name":"DeleteObject",
|
359
|
-
"http":{
|
360
|
-
"method":"PUT",
|
361
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/delete",
|
362
|
-
"responseCode":200
|
363
|
-
},
|
364
|
-
"input":{"shape":"DeleteObjectRequest"},
|
365
|
-
"output":{"shape":"DeleteObjectResponse"},
|
366
|
-
"errors":[
|
367
|
-
{"shape":"InternalServiceException"},
|
368
|
-
{"shape":"InvalidArnException"},
|
369
|
-
{"shape":"RetryableConflictException"},
|
370
|
-
{"shape":"ValidationException"},
|
371
|
-
{"shape":"LimitExceededException"},
|
372
|
-
{"shape":"AccessDeniedException"},
|
373
|
-
{"shape":"DirectoryNotEnabledException"},
|
374
|
-
{"shape":"ResourceNotFoundException"},
|
375
|
-
{"shape":"ObjectNotDetachedException"}
|
376
|
-
]
|
377
|
-
},
|
378
|
-
"DeleteSchema":{
|
379
|
-
"name":"DeleteSchema",
|
380
|
-
"http":{
|
381
|
-
"method":"PUT",
|
382
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema",
|
383
|
-
"responseCode":200
|
384
|
-
},
|
385
|
-
"input":{"shape":"DeleteSchemaRequest"},
|
386
|
-
"output":{"shape":"DeleteSchemaResponse"},
|
387
|
-
"errors":[
|
388
|
-
{"shape":"InternalServiceException"},
|
389
|
-
{"shape":"InvalidArnException"},
|
390
|
-
{"shape":"RetryableConflictException"},
|
391
|
-
{"shape":"ValidationException"},
|
392
|
-
{"shape":"LimitExceededException"},
|
393
|
-
{"shape":"AccessDeniedException"},
|
394
|
-
{"shape":"ResourceNotFoundException"},
|
395
|
-
{"shape":"StillContainsLinksException"}
|
396
|
-
]
|
397
|
-
},
|
398
|
-
"DeleteTypedLinkFacet":{
|
399
|
-
"name":"DeleteTypedLinkFacet",
|
400
|
-
"http":{
|
401
|
-
"method":"PUT",
|
402
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/delete",
|
403
|
-
"responseCode":200
|
404
|
-
},
|
405
|
-
"input":{"shape":"DeleteTypedLinkFacetRequest"},
|
406
|
-
"output":{"shape":"DeleteTypedLinkFacetResponse"},
|
407
|
-
"errors":[
|
408
|
-
{"shape":"InternalServiceException"},
|
409
|
-
{"shape":"InvalidArnException"},
|
410
|
-
{"shape":"RetryableConflictException"},
|
411
|
-
{"shape":"ValidationException"},
|
412
|
-
{"shape":"LimitExceededException"},
|
413
|
-
{"shape":"AccessDeniedException"},
|
414
|
-
{"shape":"ResourceNotFoundException"},
|
415
|
-
{"shape":"FacetNotFoundException"}
|
416
|
-
]
|
417
|
-
},
|
418
|
-
"DetachFromIndex":{
|
419
|
-
"name":"DetachFromIndex",
|
420
|
-
"http":{
|
421
|
-
"method":"PUT",
|
422
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/index/detach",
|
423
|
-
"responseCode":200
|
424
|
-
},
|
425
|
-
"input":{"shape":"DetachFromIndexRequest"},
|
426
|
-
"output":{"shape":"DetachFromIndexResponse"},
|
427
|
-
"errors":[
|
428
|
-
{"shape":"InternalServiceException"},
|
429
|
-
{"shape":"InvalidArnException"},
|
430
|
-
{"shape":"RetryableConflictException"},
|
431
|
-
{"shape":"ValidationException"},
|
432
|
-
{"shape":"LimitExceededException"},
|
433
|
-
{"shape":"AccessDeniedException"},
|
434
|
-
{"shape":"DirectoryNotEnabledException"},
|
435
|
-
{"shape":"ResourceNotFoundException"},
|
436
|
-
{"shape":"ObjectAlreadyDetachedException"},
|
437
|
-
{"shape":"NotIndexException"}
|
438
|
-
]
|
439
|
-
},
|
440
|
-
"DetachObject":{
|
441
|
-
"name":"DetachObject",
|
442
|
-
"http":{
|
443
|
-
"method":"PUT",
|
444
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/detach",
|
445
|
-
"responseCode":200
|
446
|
-
},
|
447
|
-
"input":{"shape":"DetachObjectRequest"},
|
448
|
-
"output":{"shape":"DetachObjectResponse"},
|
449
|
-
"errors":[
|
450
|
-
{"shape":"InternalServiceException"},
|
451
|
-
{"shape":"InvalidArnException"},
|
452
|
-
{"shape":"RetryableConflictException"},
|
453
|
-
{"shape":"ValidationException"},
|
454
|
-
{"shape":"LimitExceededException"},
|
455
|
-
{"shape":"AccessDeniedException"},
|
456
|
-
{"shape":"DirectoryNotEnabledException"},
|
457
|
-
{"shape":"ResourceNotFoundException"},
|
458
|
-
{"shape":"NotNodeException"}
|
459
|
-
]
|
460
|
-
},
|
461
|
-
"DetachPolicy":{
|
462
|
-
"name":"DetachPolicy",
|
463
|
-
"http":{
|
464
|
-
"method":"PUT",
|
465
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/policy/detach",
|
466
|
-
"responseCode":200
|
467
|
-
},
|
468
|
-
"input":{"shape":"DetachPolicyRequest"},
|
469
|
-
"output":{"shape":"DetachPolicyResponse"},
|
470
|
-
"errors":[
|
471
|
-
{"shape":"InternalServiceException"},
|
472
|
-
{"shape":"InvalidArnException"},
|
473
|
-
{"shape":"RetryableConflictException"},
|
474
|
-
{"shape":"ValidationException"},
|
475
|
-
{"shape":"LimitExceededException"},
|
476
|
-
{"shape":"AccessDeniedException"},
|
477
|
-
{"shape":"DirectoryNotEnabledException"},
|
478
|
-
{"shape":"ResourceNotFoundException"},
|
479
|
-
{"shape":"NotPolicyException"}
|
480
|
-
]
|
481
|
-
},
|
482
|
-
"DetachTypedLink":{
|
483
|
-
"name":"DetachTypedLink",
|
484
|
-
"http":{
|
485
|
-
"method":"PUT",
|
486
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/detach",
|
487
|
-
"responseCode":200
|
488
|
-
},
|
489
|
-
"input":{"shape":"DetachTypedLinkRequest"},
|
490
|
-
"errors":[
|
491
|
-
{"shape":"InternalServiceException"},
|
492
|
-
{"shape":"InvalidArnException"},
|
493
|
-
{"shape":"RetryableConflictException"},
|
494
|
-
{"shape":"ValidationException"},
|
495
|
-
{"shape":"LimitExceededException"},
|
496
|
-
{"shape":"AccessDeniedException"},
|
497
|
-
{"shape":"DirectoryNotEnabledException"},
|
498
|
-
{"shape":"ResourceNotFoundException"},
|
499
|
-
{"shape":"FacetValidationException"}
|
500
|
-
]
|
501
|
-
},
|
502
|
-
"DisableDirectory":{
|
503
|
-
"name":"DisableDirectory",
|
504
|
-
"http":{
|
505
|
-
"method":"PUT",
|
506
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory/disable",
|
507
|
-
"responseCode":200
|
508
|
-
},
|
509
|
-
"input":{"shape":"DisableDirectoryRequest"},
|
510
|
-
"output":{"shape":"DisableDirectoryResponse"},
|
511
|
-
"errors":[
|
512
|
-
{"shape":"ResourceNotFoundException"},
|
513
|
-
{"shape":"DirectoryDeletedException"},
|
514
|
-
{"shape":"InternalServiceException"},
|
515
|
-
{"shape":"ValidationException"},
|
516
|
-
{"shape":"LimitExceededException"},
|
517
|
-
{"shape":"AccessDeniedException"},
|
518
|
-
{"shape":"RetryableConflictException"},
|
519
|
-
{"shape":"InvalidArnException"}
|
520
|
-
]
|
521
|
-
},
|
522
|
-
"EnableDirectory":{
|
523
|
-
"name":"EnableDirectory",
|
524
|
-
"http":{
|
525
|
-
"method":"PUT",
|
526
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory/enable",
|
527
|
-
"responseCode":200
|
528
|
-
},
|
529
|
-
"input":{"shape":"EnableDirectoryRequest"},
|
530
|
-
"output":{"shape":"EnableDirectoryResponse"},
|
531
|
-
"errors":[
|
532
|
-
{"shape":"ResourceNotFoundException"},
|
533
|
-
{"shape":"DirectoryDeletedException"},
|
534
|
-
{"shape":"InternalServiceException"},
|
535
|
-
{"shape":"ValidationException"},
|
536
|
-
{"shape":"LimitExceededException"},
|
537
|
-
{"shape":"AccessDeniedException"},
|
538
|
-
{"shape":"RetryableConflictException"},
|
539
|
-
{"shape":"InvalidArnException"}
|
540
|
-
]
|
541
|
-
},
|
542
|
-
"GetAppliedSchemaVersion":{
|
543
|
-
"name":"GetAppliedSchemaVersion",
|
544
|
-
"http":{
|
545
|
-
"method":"POST",
|
546
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/getappliedschema",
|
547
|
-
"responseCode":200
|
548
|
-
},
|
549
|
-
"input":{"shape":"GetAppliedSchemaVersionRequest"},
|
550
|
-
"output":{"shape":"GetAppliedSchemaVersionResponse"},
|
551
|
-
"errors":[
|
552
|
-
{"shape":"InternalServiceException"},
|
553
|
-
{"shape":"InvalidArnException"},
|
554
|
-
{"shape":"RetryableConflictException"},
|
555
|
-
{"shape":"ValidationException"},
|
556
|
-
{"shape":"LimitExceededException"},
|
557
|
-
{"shape":"AccessDeniedException"},
|
558
|
-
{"shape":"ResourceNotFoundException"}
|
559
|
-
]
|
560
|
-
},
|
561
|
-
"GetDirectory":{
|
562
|
-
"name":"GetDirectory",
|
563
|
-
"http":{
|
564
|
-
"method":"POST",
|
565
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory/get",
|
566
|
-
"responseCode":200
|
567
|
-
},
|
568
|
-
"input":{"shape":"GetDirectoryRequest"},
|
569
|
-
"output":{"shape":"GetDirectoryResponse"},
|
570
|
-
"errors":[
|
571
|
-
{"shape":"InternalServiceException"},
|
572
|
-
{"shape":"InvalidArnException"},
|
573
|
-
{"shape":"RetryableConflictException"},
|
574
|
-
{"shape":"ValidationException"},
|
575
|
-
{"shape":"LimitExceededException"},
|
576
|
-
{"shape":"AccessDeniedException"}
|
577
|
-
]
|
578
|
-
},
|
579
|
-
"GetFacet":{
|
580
|
-
"name":"GetFacet",
|
581
|
-
"http":{
|
582
|
-
"method":"POST",
|
583
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet",
|
584
|
-
"responseCode":200
|
585
|
-
},
|
586
|
-
"input":{"shape":"GetFacetRequest"},
|
587
|
-
"output":{"shape":"GetFacetResponse"},
|
588
|
-
"errors":[
|
589
|
-
{"shape":"InternalServiceException"},
|
590
|
-
{"shape":"InvalidArnException"},
|
591
|
-
{"shape":"RetryableConflictException"},
|
592
|
-
{"shape":"ValidationException"},
|
593
|
-
{"shape":"LimitExceededException"},
|
594
|
-
{"shape":"AccessDeniedException"},
|
595
|
-
{"shape":"ResourceNotFoundException"},
|
596
|
-
{"shape":"FacetNotFoundException"}
|
597
|
-
]
|
598
|
-
},
|
599
|
-
"GetLinkAttributes":{
|
600
|
-
"name":"GetLinkAttributes",
|
601
|
-
"http":{
|
602
|
-
"method":"POST",
|
603
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attributes/get",
|
604
|
-
"responseCode":200
|
605
|
-
},
|
606
|
-
"input":{"shape":"GetLinkAttributesRequest"},
|
607
|
-
"output":{"shape":"GetLinkAttributesResponse"},
|
608
|
-
"errors":[
|
609
|
-
{"shape":"InternalServiceException"},
|
610
|
-
{"shape":"InvalidArnException"},
|
611
|
-
{"shape":"RetryableConflictException"},
|
612
|
-
{"shape":"ValidationException"},
|
613
|
-
{"shape":"LimitExceededException"},
|
614
|
-
{"shape":"AccessDeniedException"},
|
615
|
-
{"shape":"DirectoryNotEnabledException"},
|
616
|
-
{"shape":"ResourceNotFoundException"},
|
617
|
-
{"shape":"FacetValidationException"}
|
618
|
-
]
|
619
|
-
},
|
620
|
-
"GetObjectAttributes":{
|
621
|
-
"name":"GetObjectAttributes",
|
622
|
-
"http":{
|
623
|
-
"method":"POST",
|
624
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/attributes/get",
|
625
|
-
"responseCode":200
|
626
|
-
},
|
627
|
-
"input":{"shape":"GetObjectAttributesRequest"},
|
628
|
-
"output":{"shape":"GetObjectAttributesResponse"},
|
629
|
-
"errors":[
|
630
|
-
{"shape":"InternalServiceException"},
|
631
|
-
{"shape":"InvalidArnException"},
|
632
|
-
{"shape":"RetryableConflictException"},
|
633
|
-
{"shape":"ValidationException"},
|
634
|
-
{"shape":"LimitExceededException"},
|
635
|
-
{"shape":"AccessDeniedException"},
|
636
|
-
{"shape":"DirectoryNotEnabledException"},
|
637
|
-
{"shape":"ResourceNotFoundException"},
|
638
|
-
{"shape":"FacetValidationException"}
|
639
|
-
]
|
640
|
-
},
|
641
|
-
"GetObjectInformation":{
|
642
|
-
"name":"GetObjectInformation",
|
643
|
-
"http":{
|
644
|
-
"method":"POST",
|
645
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/information",
|
646
|
-
"responseCode":200
|
647
|
-
},
|
648
|
-
"input":{"shape":"GetObjectInformationRequest"},
|
649
|
-
"output":{"shape":"GetObjectInformationResponse"},
|
650
|
-
"errors":[
|
651
|
-
{"shape":"InternalServiceException"},
|
652
|
-
{"shape":"InvalidArnException"},
|
653
|
-
{"shape":"RetryableConflictException"},
|
654
|
-
{"shape":"ValidationException"},
|
655
|
-
{"shape":"LimitExceededException"},
|
656
|
-
{"shape":"AccessDeniedException"},
|
657
|
-
{"shape":"DirectoryNotEnabledException"},
|
658
|
-
{"shape":"ResourceNotFoundException"}
|
659
|
-
]
|
660
|
-
},
|
661
|
-
"GetSchemaAsJson":{
|
662
|
-
"name":"GetSchemaAsJson",
|
663
|
-
"http":{
|
664
|
-
"method":"POST",
|
665
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
|
666
|
-
"responseCode":200
|
667
|
-
},
|
668
|
-
"input":{"shape":"GetSchemaAsJsonRequest"},
|
669
|
-
"output":{"shape":"GetSchemaAsJsonResponse"},
|
670
|
-
"errors":[
|
671
|
-
{"shape":"InternalServiceException"},
|
672
|
-
{"shape":"InvalidArnException"},
|
673
|
-
{"shape":"RetryableConflictException"},
|
674
|
-
{"shape":"ValidationException"},
|
675
|
-
{"shape":"LimitExceededException"},
|
676
|
-
{"shape":"AccessDeniedException"},
|
677
|
-
{"shape":"ResourceNotFoundException"},
|
678
|
-
{"shape":"ValidationException"}
|
679
|
-
]
|
680
|
-
},
|
681
|
-
"GetTypedLinkFacetInformation":{
|
682
|
-
"name":"GetTypedLinkFacetInformation",
|
683
|
-
"http":{
|
684
|
-
"method":"POST",
|
685
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/get",
|
686
|
-
"responseCode":200
|
687
|
-
},
|
688
|
-
"input":{"shape":"GetTypedLinkFacetInformationRequest"},
|
689
|
-
"output":{"shape":"GetTypedLinkFacetInformationResponse"},
|
690
|
-
"errors":[
|
691
|
-
{"shape":"InternalServiceException"},
|
692
|
-
{"shape":"InvalidArnException"},
|
693
|
-
{"shape":"RetryableConflictException"},
|
694
|
-
{"shape":"ValidationException"},
|
695
|
-
{"shape":"LimitExceededException"},
|
696
|
-
{"shape":"AccessDeniedException"},
|
697
|
-
{"shape":"ResourceNotFoundException"},
|
698
|
-
{"shape":"InvalidNextTokenException"},
|
699
|
-
{"shape":"FacetNotFoundException"}
|
700
|
-
]
|
701
|
-
},
|
702
|
-
"ListAppliedSchemaArns":{
|
703
|
-
"name":"ListAppliedSchemaArns",
|
704
|
-
"http":{
|
705
|
-
"method":"POST",
|
706
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/applied",
|
707
|
-
"responseCode":200
|
708
|
-
},
|
709
|
-
"input":{"shape":"ListAppliedSchemaArnsRequest"},
|
710
|
-
"output":{"shape":"ListAppliedSchemaArnsResponse"},
|
711
|
-
"errors":[
|
712
|
-
{"shape":"InternalServiceException"},
|
713
|
-
{"shape":"InvalidArnException"},
|
714
|
-
{"shape":"RetryableConflictException"},
|
715
|
-
{"shape":"ValidationException"},
|
716
|
-
{"shape":"LimitExceededException"},
|
717
|
-
{"shape":"AccessDeniedException"},
|
718
|
-
{"shape":"ResourceNotFoundException"},
|
719
|
-
{"shape":"InvalidNextTokenException"}
|
720
|
-
]
|
721
|
-
},
|
722
|
-
"ListAttachedIndices":{
|
723
|
-
"name":"ListAttachedIndices",
|
724
|
-
"http":{
|
725
|
-
"method":"POST",
|
726
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/indices",
|
727
|
-
"responseCode":200
|
728
|
-
},
|
729
|
-
"input":{"shape":"ListAttachedIndicesRequest"},
|
730
|
-
"output":{"shape":"ListAttachedIndicesResponse"},
|
731
|
-
"errors":[
|
732
|
-
{"shape":"InternalServiceException"},
|
733
|
-
{"shape":"InvalidArnException"},
|
734
|
-
{"shape":"RetryableConflictException"},
|
735
|
-
{"shape":"ValidationException"},
|
736
|
-
{"shape":"LimitExceededException"},
|
737
|
-
{"shape":"AccessDeniedException"},
|
738
|
-
{"shape":"DirectoryNotEnabledException"},
|
739
|
-
{"shape":"ResourceNotFoundException"}
|
740
|
-
]
|
741
|
-
},
|
742
|
-
"ListDevelopmentSchemaArns":{
|
743
|
-
"name":"ListDevelopmentSchemaArns",
|
744
|
-
"http":{
|
745
|
-
"method":"POST",
|
746
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/development",
|
747
|
-
"responseCode":200
|
748
|
-
},
|
749
|
-
"input":{"shape":"ListDevelopmentSchemaArnsRequest"},
|
750
|
-
"output":{"shape":"ListDevelopmentSchemaArnsResponse"},
|
751
|
-
"errors":[
|
752
|
-
{"shape":"InternalServiceException"},
|
753
|
-
{"shape":"InvalidArnException"},
|
754
|
-
{"shape":"RetryableConflictException"},
|
755
|
-
{"shape":"ValidationException"},
|
756
|
-
{"shape":"LimitExceededException"},
|
757
|
-
{"shape":"AccessDeniedException"},
|
758
|
-
{"shape":"ResourceNotFoundException"},
|
759
|
-
{"shape":"InvalidNextTokenException"}
|
760
|
-
]
|
761
|
-
},
|
762
|
-
"ListDirectories":{
|
763
|
-
"name":"ListDirectories",
|
764
|
-
"http":{
|
765
|
-
"method":"POST",
|
766
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/directory/list",
|
767
|
-
"responseCode":200
|
768
|
-
},
|
769
|
-
"input":{"shape":"ListDirectoriesRequest"},
|
770
|
-
"output":{"shape":"ListDirectoriesResponse"},
|
771
|
-
"errors":[
|
772
|
-
{"shape":"InternalServiceException"},
|
773
|
-
{"shape":"InvalidArnException"},
|
774
|
-
{"shape":"RetryableConflictException"},
|
775
|
-
{"shape":"ValidationException"},
|
776
|
-
{"shape":"LimitExceededException"},
|
777
|
-
{"shape":"AccessDeniedException"},
|
778
|
-
{"shape":"InvalidNextTokenException"}
|
779
|
-
]
|
780
|
-
},
|
781
|
-
"ListFacetAttributes":{
|
782
|
-
"name":"ListFacetAttributes",
|
783
|
-
"http":{
|
784
|
-
"method":"POST",
|
785
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet/attributes",
|
786
|
-
"responseCode":200
|
787
|
-
},
|
788
|
-
"input":{"shape":"ListFacetAttributesRequest"},
|
789
|
-
"output":{"shape":"ListFacetAttributesResponse"},
|
790
|
-
"errors":[
|
791
|
-
{"shape":"InternalServiceException"},
|
792
|
-
{"shape":"InvalidArnException"},
|
793
|
-
{"shape":"RetryableConflictException"},
|
794
|
-
{"shape":"ValidationException"},
|
795
|
-
{"shape":"LimitExceededException"},
|
796
|
-
{"shape":"AccessDeniedException"},
|
797
|
-
{"shape":"ResourceNotFoundException"},
|
798
|
-
{"shape":"FacetNotFoundException"},
|
799
|
-
{"shape":"InvalidNextTokenException"}
|
800
|
-
]
|
801
|
-
},
|
802
|
-
"ListFacetNames":{
|
803
|
-
"name":"ListFacetNames",
|
804
|
-
"http":{
|
805
|
-
"method":"POST",
|
806
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet/list",
|
807
|
-
"responseCode":200
|
808
|
-
},
|
809
|
-
"input":{"shape":"ListFacetNamesRequest"},
|
810
|
-
"output":{"shape":"ListFacetNamesResponse"},
|
811
|
-
"errors":[
|
812
|
-
{"shape":"InternalServiceException"},
|
813
|
-
{"shape":"InvalidArnException"},
|
814
|
-
{"shape":"RetryableConflictException"},
|
815
|
-
{"shape":"ValidationException"},
|
816
|
-
{"shape":"LimitExceededException"},
|
817
|
-
{"shape":"AccessDeniedException"},
|
818
|
-
{"shape":"ResourceNotFoundException"},
|
819
|
-
{"shape":"InvalidNextTokenException"}
|
820
|
-
]
|
821
|
-
},
|
822
|
-
"ListIncomingTypedLinks":{
|
823
|
-
"name":"ListIncomingTypedLinks",
|
824
|
-
"http":{
|
825
|
-
"method":"POST",
|
826
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/incoming",
|
827
|
-
"responseCode":200
|
828
|
-
},
|
829
|
-
"input":{"shape":"ListIncomingTypedLinksRequest"},
|
830
|
-
"output":{"shape":"ListIncomingTypedLinksResponse"},
|
831
|
-
"errors":[
|
832
|
-
{"shape":"InternalServiceException"},
|
833
|
-
{"shape":"InvalidArnException"},
|
834
|
-
{"shape":"RetryableConflictException"},
|
835
|
-
{"shape":"ValidationException"},
|
836
|
-
{"shape":"LimitExceededException"},
|
837
|
-
{"shape":"AccessDeniedException"},
|
838
|
-
{"shape":"DirectoryNotEnabledException"},
|
839
|
-
{"shape":"ResourceNotFoundException"},
|
840
|
-
{"shape":"InvalidNextTokenException"},
|
841
|
-
{"shape":"FacetValidationException"}
|
842
|
-
]
|
843
|
-
},
|
844
|
-
"ListIndex":{
|
845
|
-
"name":"ListIndex",
|
846
|
-
"http":{
|
847
|
-
"method":"POST",
|
848
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/index/targets",
|
849
|
-
"responseCode":200
|
850
|
-
},
|
851
|
-
"input":{"shape":"ListIndexRequest"},
|
852
|
-
"output":{"shape":"ListIndexResponse"},
|
853
|
-
"errors":[
|
854
|
-
{"shape":"InternalServiceException"},
|
855
|
-
{"shape":"InvalidArnException"},
|
856
|
-
{"shape":"RetryableConflictException"},
|
857
|
-
{"shape":"FacetValidationException"},
|
858
|
-
{"shape":"ValidationException"},
|
859
|
-
{"shape":"LimitExceededException"},
|
860
|
-
{"shape":"AccessDeniedException"},
|
861
|
-
{"shape":"DirectoryNotEnabledException"},
|
862
|
-
{"shape":"InvalidNextTokenException"},
|
863
|
-
{"shape":"ResourceNotFoundException"},
|
864
|
-
{"shape":"NotIndexException"}
|
865
|
-
]
|
866
|
-
},
|
867
|
-
"ListObjectAttributes":{
|
868
|
-
"name":"ListObjectAttributes",
|
869
|
-
"http":{
|
870
|
-
"method":"POST",
|
871
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/attributes",
|
872
|
-
"responseCode":200
|
873
|
-
},
|
874
|
-
"input":{"shape":"ListObjectAttributesRequest"},
|
875
|
-
"output":{"shape":"ListObjectAttributesResponse"},
|
876
|
-
"errors":[
|
877
|
-
{"shape":"InternalServiceException"},
|
878
|
-
{"shape":"InvalidArnException"},
|
879
|
-
{"shape":"RetryableConflictException"},
|
880
|
-
{"shape":"ValidationException"},
|
881
|
-
{"shape":"LimitExceededException"},
|
882
|
-
{"shape":"AccessDeniedException"},
|
883
|
-
{"shape":"DirectoryNotEnabledException"},
|
884
|
-
{"shape":"ResourceNotFoundException"},
|
885
|
-
{"shape":"InvalidNextTokenException"},
|
886
|
-
{"shape":"FacetValidationException"}
|
887
|
-
]
|
888
|
-
},
|
889
|
-
"ListObjectChildren":{
|
890
|
-
"name":"ListObjectChildren",
|
891
|
-
"http":{
|
892
|
-
"method":"POST",
|
893
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/children",
|
894
|
-
"responseCode":200
|
895
|
-
},
|
896
|
-
"input":{"shape":"ListObjectChildrenRequest"},
|
897
|
-
"output":{"shape":"ListObjectChildrenResponse"},
|
898
|
-
"errors":[
|
899
|
-
{"shape":"InternalServiceException"},
|
900
|
-
{"shape":"InvalidArnException"},
|
901
|
-
{"shape":"RetryableConflictException"},
|
902
|
-
{"shape":"ValidationException"},
|
903
|
-
{"shape":"LimitExceededException"},
|
904
|
-
{"shape":"AccessDeniedException"},
|
905
|
-
{"shape":"DirectoryNotEnabledException"},
|
906
|
-
{"shape":"ResourceNotFoundException"},
|
907
|
-
{"shape":"InvalidNextTokenException"},
|
908
|
-
{"shape":"NotNodeException"}
|
909
|
-
]
|
910
|
-
},
|
911
|
-
"ListObjectParentPaths":{
|
912
|
-
"name":"ListObjectParentPaths",
|
913
|
-
"http":{
|
914
|
-
"method":"POST",
|
915
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/parentpaths",
|
916
|
-
"responseCode":200
|
917
|
-
},
|
918
|
-
"input":{"shape":"ListObjectParentPathsRequest"},
|
919
|
-
"output":{"shape":"ListObjectParentPathsResponse"},
|
920
|
-
"errors":[
|
921
|
-
{"shape":"InternalServiceException"},
|
922
|
-
{"shape":"InvalidArnException"},
|
923
|
-
{"shape":"RetryableConflictException"},
|
924
|
-
{"shape":"ValidationException"},
|
925
|
-
{"shape":"LimitExceededException"},
|
926
|
-
{"shape":"AccessDeniedException"},
|
927
|
-
{"shape":"DirectoryNotEnabledException"},
|
928
|
-
{"shape":"InvalidNextTokenException"},
|
929
|
-
{"shape":"ResourceNotFoundException"}
|
930
|
-
]
|
931
|
-
},
|
932
|
-
"ListObjectParents":{
|
933
|
-
"name":"ListObjectParents",
|
934
|
-
"http":{
|
935
|
-
"method":"POST",
|
936
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/parent",
|
937
|
-
"responseCode":200
|
938
|
-
},
|
939
|
-
"input":{"shape":"ListObjectParentsRequest"},
|
940
|
-
"output":{"shape":"ListObjectParentsResponse"},
|
941
|
-
"errors":[
|
942
|
-
{"shape":"InternalServiceException"},
|
943
|
-
{"shape":"InvalidArnException"},
|
944
|
-
{"shape":"RetryableConflictException"},
|
945
|
-
{"shape":"ValidationException"},
|
946
|
-
{"shape":"LimitExceededException"},
|
947
|
-
{"shape":"AccessDeniedException"},
|
948
|
-
{"shape":"DirectoryNotEnabledException"},
|
949
|
-
{"shape":"ResourceNotFoundException"},
|
950
|
-
{"shape":"InvalidNextTokenException"},
|
951
|
-
{"shape":"CannotListParentOfRootException"}
|
952
|
-
]
|
953
|
-
},
|
954
|
-
"ListObjectPolicies":{
|
955
|
-
"name":"ListObjectPolicies",
|
956
|
-
"http":{
|
957
|
-
"method":"POST",
|
958
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/policy",
|
959
|
-
"responseCode":200
|
960
|
-
},
|
961
|
-
"input":{"shape":"ListObjectPoliciesRequest"},
|
962
|
-
"output":{"shape":"ListObjectPoliciesResponse"},
|
963
|
-
"errors":[
|
964
|
-
{"shape":"InternalServiceException"},
|
965
|
-
{"shape":"InvalidArnException"},
|
966
|
-
{"shape":"RetryableConflictException"},
|
967
|
-
{"shape":"ValidationException"},
|
968
|
-
{"shape":"LimitExceededException"},
|
969
|
-
{"shape":"AccessDeniedException"},
|
970
|
-
{"shape":"DirectoryNotEnabledException"},
|
971
|
-
{"shape":"ResourceNotFoundException"},
|
972
|
-
{"shape":"InvalidNextTokenException"}
|
973
|
-
]
|
974
|
-
},
|
975
|
-
"ListOutgoingTypedLinks":{
|
976
|
-
"name":"ListOutgoingTypedLinks",
|
977
|
-
"http":{
|
978
|
-
"method":"POST",
|
979
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/outgoing",
|
980
|
-
"responseCode":200
|
981
|
-
},
|
982
|
-
"input":{"shape":"ListOutgoingTypedLinksRequest"},
|
983
|
-
"output":{"shape":"ListOutgoingTypedLinksResponse"},
|
984
|
-
"errors":[
|
985
|
-
{"shape":"InternalServiceException"},
|
986
|
-
{"shape":"InvalidArnException"},
|
987
|
-
{"shape":"RetryableConflictException"},
|
988
|
-
{"shape":"ValidationException"},
|
989
|
-
{"shape":"LimitExceededException"},
|
990
|
-
{"shape":"AccessDeniedException"},
|
991
|
-
{"shape":"DirectoryNotEnabledException"},
|
992
|
-
{"shape":"ResourceNotFoundException"},
|
993
|
-
{"shape":"InvalidNextTokenException"},
|
994
|
-
{"shape":"FacetValidationException"}
|
995
|
-
]
|
996
|
-
},
|
997
|
-
"ListPolicyAttachments":{
|
998
|
-
"name":"ListPolicyAttachments",
|
999
|
-
"http":{
|
1000
|
-
"method":"POST",
|
1001
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/policy/attachment",
|
1002
|
-
"responseCode":200
|
1003
|
-
},
|
1004
|
-
"input":{"shape":"ListPolicyAttachmentsRequest"},
|
1005
|
-
"output":{"shape":"ListPolicyAttachmentsResponse"},
|
1006
|
-
"errors":[
|
1007
|
-
{"shape":"InternalServiceException"},
|
1008
|
-
{"shape":"InvalidArnException"},
|
1009
|
-
{"shape":"RetryableConflictException"},
|
1010
|
-
{"shape":"ValidationException"},
|
1011
|
-
{"shape":"LimitExceededException"},
|
1012
|
-
{"shape":"AccessDeniedException"},
|
1013
|
-
{"shape":"DirectoryNotEnabledException"},
|
1014
|
-
{"shape":"InvalidNextTokenException"},
|
1015
|
-
{"shape":"ResourceNotFoundException"},
|
1016
|
-
{"shape":"NotPolicyException"}
|
1017
|
-
]
|
1018
|
-
},
|
1019
|
-
"ListPublishedSchemaArns":{
|
1020
|
-
"name":"ListPublishedSchemaArns",
|
1021
|
-
"http":{
|
1022
|
-
"method":"POST",
|
1023
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/published",
|
1024
|
-
"responseCode":200
|
1025
|
-
},
|
1026
|
-
"input":{"shape":"ListPublishedSchemaArnsRequest"},
|
1027
|
-
"output":{"shape":"ListPublishedSchemaArnsResponse"},
|
1028
|
-
"errors":[
|
1029
|
-
{"shape":"InternalServiceException"},
|
1030
|
-
{"shape":"InvalidArnException"},
|
1031
|
-
{"shape":"RetryableConflictException"},
|
1032
|
-
{"shape":"ValidationException"},
|
1033
|
-
{"shape":"LimitExceededException"},
|
1034
|
-
{"shape":"AccessDeniedException"},
|
1035
|
-
{"shape":"ResourceNotFoundException"},
|
1036
|
-
{"shape":"InvalidNextTokenException"}
|
1037
|
-
]
|
1038
|
-
},
|
1039
|
-
"ListTagsForResource":{
|
1040
|
-
"name":"ListTagsForResource",
|
1041
|
-
"http":{
|
1042
|
-
"method":"POST",
|
1043
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/tags",
|
1044
|
-
"responseCode":200
|
1045
|
-
},
|
1046
|
-
"input":{"shape":"ListTagsForResourceRequest"},
|
1047
|
-
"output":{"shape":"ListTagsForResourceResponse"},
|
1048
|
-
"errors":[
|
1049
|
-
{"shape":"InternalServiceException"},
|
1050
|
-
{"shape":"InvalidArnException"},
|
1051
|
-
{"shape":"RetryableConflictException"},
|
1052
|
-
{"shape":"ValidationException"},
|
1053
|
-
{"shape":"LimitExceededException"},
|
1054
|
-
{"shape":"AccessDeniedException"},
|
1055
|
-
{"shape":"ResourceNotFoundException"},
|
1056
|
-
{"shape":"InvalidTaggingRequestException"}
|
1057
|
-
]
|
1058
|
-
},
|
1059
|
-
"ListTypedLinkFacetAttributes":{
|
1060
|
-
"name":"ListTypedLinkFacetAttributes",
|
1061
|
-
"http":{
|
1062
|
-
"method":"POST",
|
1063
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/attributes",
|
1064
|
-
"responseCode":200
|
1065
|
-
},
|
1066
|
-
"input":{"shape":"ListTypedLinkFacetAttributesRequest"},
|
1067
|
-
"output":{"shape":"ListTypedLinkFacetAttributesResponse"},
|
1068
|
-
"errors":[
|
1069
|
-
{"shape":"InternalServiceException"},
|
1070
|
-
{"shape":"InvalidArnException"},
|
1071
|
-
{"shape":"RetryableConflictException"},
|
1072
|
-
{"shape":"ValidationException"},
|
1073
|
-
{"shape":"LimitExceededException"},
|
1074
|
-
{"shape":"AccessDeniedException"},
|
1075
|
-
{"shape":"ResourceNotFoundException"},
|
1076
|
-
{"shape":"FacetNotFoundException"},
|
1077
|
-
{"shape":"InvalidNextTokenException"}
|
1078
|
-
]
|
1079
|
-
},
|
1080
|
-
"ListTypedLinkFacetNames":{
|
1081
|
-
"name":"ListTypedLinkFacetNames",
|
1082
|
-
"http":{
|
1083
|
-
"method":"POST",
|
1084
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet/list",
|
1085
|
-
"responseCode":200
|
1086
|
-
},
|
1087
|
-
"input":{"shape":"ListTypedLinkFacetNamesRequest"},
|
1088
|
-
"output":{"shape":"ListTypedLinkFacetNamesResponse"},
|
1089
|
-
"errors":[
|
1090
|
-
{"shape":"InternalServiceException"},
|
1091
|
-
{"shape":"InvalidArnException"},
|
1092
|
-
{"shape":"RetryableConflictException"},
|
1093
|
-
{"shape":"ValidationException"},
|
1094
|
-
{"shape":"LimitExceededException"},
|
1095
|
-
{"shape":"AccessDeniedException"},
|
1096
|
-
{"shape":"ResourceNotFoundException"},
|
1097
|
-
{"shape":"InvalidNextTokenException"}
|
1098
|
-
]
|
1099
|
-
},
|
1100
|
-
"LookupPolicy":{
|
1101
|
-
"name":"LookupPolicy",
|
1102
|
-
"http":{
|
1103
|
-
"method":"POST",
|
1104
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/policy/lookup",
|
1105
|
-
"responseCode":200
|
1106
|
-
},
|
1107
|
-
"input":{"shape":"LookupPolicyRequest"},
|
1108
|
-
"output":{"shape":"LookupPolicyResponse"},
|
1109
|
-
"errors":[
|
1110
|
-
{"shape":"InternalServiceException"},
|
1111
|
-
{"shape":"InvalidArnException"},
|
1112
|
-
{"shape":"RetryableConflictException"},
|
1113
|
-
{"shape":"ValidationException"},
|
1114
|
-
{"shape":"LimitExceededException"},
|
1115
|
-
{"shape":"AccessDeniedException"},
|
1116
|
-
{"shape":"DirectoryNotEnabledException"},
|
1117
|
-
{"shape":"InvalidNextTokenException"},
|
1118
|
-
{"shape":"ResourceNotFoundException"}
|
1119
|
-
]
|
1120
|
-
},
|
1121
|
-
"PublishSchema":{
|
1122
|
-
"name":"PublishSchema",
|
1123
|
-
"http":{
|
1124
|
-
"method":"PUT",
|
1125
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/publish",
|
1126
|
-
"responseCode":200
|
1127
|
-
},
|
1128
|
-
"input":{"shape":"PublishSchemaRequest"},
|
1129
|
-
"output":{"shape":"PublishSchemaResponse"},
|
1130
|
-
"errors":[
|
1131
|
-
{"shape":"InternalServiceException"},
|
1132
|
-
{"shape":"InvalidArnException"},
|
1133
|
-
{"shape":"RetryableConflictException"},
|
1134
|
-
{"shape":"ValidationException"},
|
1135
|
-
{"shape":"LimitExceededException"},
|
1136
|
-
{"shape":"AccessDeniedException"},
|
1137
|
-
{"shape":"ResourceNotFoundException"},
|
1138
|
-
{"shape":"SchemaAlreadyPublishedException"}
|
1139
|
-
]
|
1140
|
-
},
|
1141
|
-
"PutSchemaFromJson":{
|
1142
|
-
"name":"PutSchemaFromJson",
|
1143
|
-
"http":{
|
1144
|
-
"method":"PUT",
|
1145
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/json",
|
1146
|
-
"responseCode":200
|
1147
|
-
},
|
1148
|
-
"input":{"shape":"PutSchemaFromJsonRequest"},
|
1149
|
-
"output":{"shape":"PutSchemaFromJsonResponse"},
|
1150
|
-
"errors":[
|
1151
|
-
{"shape":"InternalServiceException"},
|
1152
|
-
{"shape":"InvalidArnException"},
|
1153
|
-
{"shape":"RetryableConflictException"},
|
1154
|
-
{"shape":"ValidationException"},
|
1155
|
-
{"shape":"LimitExceededException"},
|
1156
|
-
{"shape":"AccessDeniedException"},
|
1157
|
-
{"shape":"InvalidSchemaDocException"},
|
1158
|
-
{"shape":"InvalidRuleException"}
|
1159
|
-
]
|
1160
|
-
},
|
1161
|
-
"RemoveFacetFromObject":{
|
1162
|
-
"name":"RemoveFacetFromObject",
|
1163
|
-
"http":{
|
1164
|
-
"method":"PUT",
|
1165
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/facets/delete",
|
1166
|
-
"responseCode":200
|
1167
|
-
},
|
1168
|
-
"input":{"shape":"RemoveFacetFromObjectRequest"},
|
1169
|
-
"output":{"shape":"RemoveFacetFromObjectResponse"},
|
1170
|
-
"errors":[
|
1171
|
-
{"shape":"InternalServiceException"},
|
1172
|
-
{"shape":"InvalidArnException"},
|
1173
|
-
{"shape":"RetryableConflictException"},
|
1174
|
-
{"shape":"ValidationException"},
|
1175
|
-
{"shape":"LimitExceededException"},
|
1176
|
-
{"shape":"AccessDeniedException"},
|
1177
|
-
{"shape":"DirectoryNotEnabledException"},
|
1178
|
-
{"shape":"ResourceNotFoundException"},
|
1179
|
-
{"shape":"FacetValidationException"}
|
1180
|
-
]
|
1181
|
-
},
|
1182
|
-
"TagResource":{
|
1183
|
-
"name":"TagResource",
|
1184
|
-
"http":{
|
1185
|
-
"method":"PUT",
|
1186
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/tags/add",
|
1187
|
-
"responseCode":200
|
1188
|
-
},
|
1189
|
-
"input":{"shape":"TagResourceRequest"},
|
1190
|
-
"output":{"shape":"TagResourceResponse"},
|
1191
|
-
"errors":[
|
1192
|
-
{"shape":"InternalServiceException"},
|
1193
|
-
{"shape":"InvalidArnException"},
|
1194
|
-
{"shape":"RetryableConflictException"},
|
1195
|
-
{"shape":"ValidationException"},
|
1196
|
-
{"shape":"LimitExceededException"},
|
1197
|
-
{"shape":"AccessDeniedException"},
|
1198
|
-
{"shape":"ResourceNotFoundException"},
|
1199
|
-
{"shape":"InvalidTaggingRequestException"}
|
1200
|
-
]
|
1201
|
-
},
|
1202
|
-
"UntagResource":{
|
1203
|
-
"name":"UntagResource",
|
1204
|
-
"http":{
|
1205
|
-
"method":"PUT",
|
1206
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/tags/remove",
|
1207
|
-
"responseCode":200
|
1208
|
-
},
|
1209
|
-
"input":{"shape":"UntagResourceRequest"},
|
1210
|
-
"output":{"shape":"UntagResourceResponse"},
|
1211
|
-
"errors":[
|
1212
|
-
{"shape":"InternalServiceException"},
|
1213
|
-
{"shape":"InvalidArnException"},
|
1214
|
-
{"shape":"RetryableConflictException"},
|
1215
|
-
{"shape":"ValidationException"},
|
1216
|
-
{"shape":"LimitExceededException"},
|
1217
|
-
{"shape":"AccessDeniedException"},
|
1218
|
-
{"shape":"ResourceNotFoundException"},
|
1219
|
-
{"shape":"InvalidTaggingRequestException"}
|
1220
|
-
]
|
1221
|
-
},
|
1222
|
-
"UpdateFacet":{
|
1223
|
-
"name":"UpdateFacet",
|
1224
|
-
"http":{
|
1225
|
-
"method":"PUT",
|
1226
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/facet",
|
1227
|
-
"responseCode":200
|
1228
|
-
},
|
1229
|
-
"input":{"shape":"UpdateFacetRequest"},
|
1230
|
-
"output":{"shape":"UpdateFacetResponse"},
|
1231
|
-
"errors":[
|
1232
|
-
{"shape":"InternalServiceException"},
|
1233
|
-
{"shape":"InvalidArnException"},
|
1234
|
-
{"shape":"RetryableConflictException"},
|
1235
|
-
{"shape":"ValidationException"},
|
1236
|
-
{"shape":"LimitExceededException"},
|
1237
|
-
{"shape":"AccessDeniedException"},
|
1238
|
-
{"shape":"InvalidFacetUpdateException"},
|
1239
|
-
{"shape":"ResourceNotFoundException"},
|
1240
|
-
{"shape":"FacetNotFoundException"},
|
1241
|
-
{"shape":"InvalidRuleException"}
|
1242
|
-
]
|
1243
|
-
},
|
1244
|
-
"UpdateLinkAttributes":{
|
1245
|
-
"name":"UpdateLinkAttributes",
|
1246
|
-
"http":{
|
1247
|
-
"method":"POST",
|
1248
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/attributes/update",
|
1249
|
-
"responseCode":200
|
1250
|
-
},
|
1251
|
-
"input":{"shape":"UpdateLinkAttributesRequest"},
|
1252
|
-
"output":{"shape":"UpdateLinkAttributesResponse"},
|
1253
|
-
"errors":[
|
1254
|
-
{"shape":"InternalServiceException"},
|
1255
|
-
{"shape":"InvalidArnException"},
|
1256
|
-
{"shape":"RetryableConflictException"},
|
1257
|
-
{"shape":"ValidationException"},
|
1258
|
-
{"shape":"LimitExceededException"},
|
1259
|
-
{"shape":"AccessDeniedException"},
|
1260
|
-
{"shape":"DirectoryNotEnabledException"},
|
1261
|
-
{"shape":"ResourceNotFoundException"},
|
1262
|
-
{"shape":"FacetValidationException"}
|
1263
|
-
]
|
1264
|
-
},
|
1265
|
-
"UpdateObjectAttributes":{
|
1266
|
-
"name":"UpdateObjectAttributes",
|
1267
|
-
"http":{
|
1268
|
-
"method":"PUT",
|
1269
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/object/update",
|
1270
|
-
"responseCode":200
|
1271
|
-
},
|
1272
|
-
"input":{"shape":"UpdateObjectAttributesRequest"},
|
1273
|
-
"output":{"shape":"UpdateObjectAttributesResponse"},
|
1274
|
-
"errors":[
|
1275
|
-
{"shape":"InternalServiceException"},
|
1276
|
-
{"shape":"InvalidArnException"},
|
1277
|
-
{"shape":"RetryableConflictException"},
|
1278
|
-
{"shape":"ValidationException"},
|
1279
|
-
{"shape":"LimitExceededException"},
|
1280
|
-
{"shape":"AccessDeniedException"},
|
1281
|
-
{"shape":"DirectoryNotEnabledException"},
|
1282
|
-
{"shape":"ResourceNotFoundException"},
|
1283
|
-
{"shape":"LinkNameAlreadyInUseException"},
|
1284
|
-
{"shape":"FacetValidationException"}
|
1285
|
-
]
|
1286
|
-
},
|
1287
|
-
"UpdateSchema":{
|
1288
|
-
"name":"UpdateSchema",
|
1289
|
-
"http":{
|
1290
|
-
"method":"PUT",
|
1291
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/update",
|
1292
|
-
"responseCode":200
|
1293
|
-
},
|
1294
|
-
"input":{"shape":"UpdateSchemaRequest"},
|
1295
|
-
"output":{"shape":"UpdateSchemaResponse"},
|
1296
|
-
"errors":[
|
1297
|
-
{"shape":"InternalServiceException"},
|
1298
|
-
{"shape":"InvalidArnException"},
|
1299
|
-
{"shape":"RetryableConflictException"},
|
1300
|
-
{"shape":"ValidationException"},
|
1301
|
-
{"shape":"LimitExceededException"},
|
1302
|
-
{"shape":"AccessDeniedException"},
|
1303
|
-
{"shape":"ResourceNotFoundException"}
|
1304
|
-
]
|
1305
|
-
},
|
1306
|
-
"UpdateTypedLinkFacet":{
|
1307
|
-
"name":"UpdateTypedLinkFacet",
|
1308
|
-
"http":{
|
1309
|
-
"method":"PUT",
|
1310
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/typedlink/facet",
|
1311
|
-
"responseCode":200
|
1312
|
-
},
|
1313
|
-
"input":{"shape":"UpdateTypedLinkFacetRequest"},
|
1314
|
-
"output":{"shape":"UpdateTypedLinkFacetResponse"},
|
1315
|
-
"errors":[
|
1316
|
-
{"shape":"InternalServiceException"},
|
1317
|
-
{"shape":"InvalidArnException"},
|
1318
|
-
{"shape":"RetryableConflictException"},
|
1319
|
-
{"shape":"ValidationException"},
|
1320
|
-
{"shape":"LimitExceededException"},
|
1321
|
-
{"shape":"AccessDeniedException"},
|
1322
|
-
{"shape":"FacetValidationException"},
|
1323
|
-
{"shape":"InvalidFacetUpdateException"},
|
1324
|
-
{"shape":"ResourceNotFoundException"},
|
1325
|
-
{"shape":"FacetNotFoundException"},
|
1326
|
-
{"shape":"InvalidRuleException"}
|
1327
|
-
]
|
1328
|
-
},
|
1329
|
-
"UpgradeAppliedSchema":{
|
1330
|
-
"name":"UpgradeAppliedSchema",
|
1331
|
-
"http":{
|
1332
|
-
"method":"PUT",
|
1333
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/upgradeapplied",
|
1334
|
-
"responseCode":200
|
1335
|
-
},
|
1336
|
-
"input":{"shape":"UpgradeAppliedSchemaRequest"},
|
1337
|
-
"output":{"shape":"UpgradeAppliedSchemaResponse"},
|
1338
|
-
"errors":[
|
1339
|
-
{"shape":"InternalServiceException"},
|
1340
|
-
{"shape":"InvalidArnException"},
|
1341
|
-
{"shape":"RetryableConflictException"},
|
1342
|
-
{"shape":"ValidationException"},
|
1343
|
-
{"shape":"IncompatibleSchemaException"},
|
1344
|
-
{"shape":"AccessDeniedException"},
|
1345
|
-
{"shape":"ResourceNotFoundException"},
|
1346
|
-
{"shape":"InvalidAttachmentException"}
|
1347
|
-
]
|
1348
|
-
},
|
1349
|
-
"UpgradePublishedSchema":{
|
1350
|
-
"name":"UpgradePublishedSchema",
|
1351
|
-
"http":{
|
1352
|
-
"method":"PUT",
|
1353
|
-
"requestUri":"/amazonclouddirectory/2017-01-11/schema/upgradepublished",
|
1354
|
-
"responseCode":200
|
1355
|
-
},
|
1356
|
-
"input":{"shape":"UpgradePublishedSchemaRequest"},
|
1357
|
-
"output":{"shape":"UpgradePublishedSchemaResponse"},
|
1358
|
-
"errors":[
|
1359
|
-
{"shape":"InternalServiceException"},
|
1360
|
-
{"shape":"InvalidArnException"},
|
1361
|
-
{"shape":"RetryableConflictException"},
|
1362
|
-
{"shape":"ValidationException"},
|
1363
|
-
{"shape":"IncompatibleSchemaException"},
|
1364
|
-
{"shape":"AccessDeniedException"},
|
1365
|
-
{"shape":"ResourceNotFoundException"},
|
1366
|
-
{"shape":"InvalidAttachmentException"},
|
1367
|
-
{"shape":"LimitExceededException"}
|
1368
|
-
]
|
1369
|
-
}
|
1370
|
-
},
|
1371
|
-
"shapes":{
|
1372
|
-
"AccessDeniedException":{
|
1373
|
-
"type":"structure",
|
1374
|
-
"members":{
|
1375
|
-
"Message":{"shape":"ExceptionMessage"}
|
1376
|
-
},
|
1377
|
-
"error":{"httpStatusCode":403},
|
1378
|
-
"exception":true
|
1379
|
-
},
|
1380
|
-
"AddFacetToObjectRequest":{
|
1381
|
-
"type":"structure",
|
1382
|
-
"required":[
|
1383
|
-
"DirectoryArn",
|
1384
|
-
"SchemaFacet",
|
1385
|
-
"ObjectReference"
|
1386
|
-
],
|
1387
|
-
"members":{
|
1388
|
-
"DirectoryArn":{
|
1389
|
-
"shape":"Arn",
|
1390
|
-
"location":"header",
|
1391
|
-
"locationName":"x-amz-data-partition"
|
1392
|
-
},
|
1393
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
1394
|
-
"ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
|
1395
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1396
|
-
}
|
1397
|
-
},
|
1398
|
-
"AddFacetToObjectResponse":{
|
1399
|
-
"type":"structure",
|
1400
|
-
"members":{
|
1401
|
-
}
|
1402
|
-
},
|
1403
|
-
"ApplySchemaRequest":{
|
1404
|
-
"type":"structure",
|
1405
|
-
"required":[
|
1406
|
-
"PublishedSchemaArn",
|
1407
|
-
"DirectoryArn"
|
1408
|
-
],
|
1409
|
-
"members":{
|
1410
|
-
"PublishedSchemaArn":{"shape":"Arn"},
|
1411
|
-
"DirectoryArn":{
|
1412
|
-
"shape":"Arn",
|
1413
|
-
"location":"header",
|
1414
|
-
"locationName":"x-amz-data-partition"
|
1415
|
-
}
|
1416
|
-
}
|
1417
|
-
},
|
1418
|
-
"ApplySchemaResponse":{
|
1419
|
-
"type":"structure",
|
1420
|
-
"members":{
|
1421
|
-
"AppliedSchemaArn":{"shape":"Arn"},
|
1422
|
-
"DirectoryArn":{"shape":"Arn"}
|
1423
|
-
}
|
1424
|
-
},
|
1425
|
-
"Arn":{"type":"string"},
|
1426
|
-
"Arns":{
|
1427
|
-
"type":"list",
|
1428
|
-
"member":{"shape":"Arn"}
|
1429
|
-
},
|
1430
|
-
"AttachObjectRequest":{
|
1431
|
-
"type":"structure",
|
1432
|
-
"required":[
|
1433
|
-
"DirectoryArn",
|
1434
|
-
"ParentReference",
|
1435
|
-
"ChildReference",
|
1436
|
-
"LinkName"
|
1437
|
-
],
|
1438
|
-
"members":{
|
1439
|
-
"DirectoryArn":{
|
1440
|
-
"shape":"Arn",
|
1441
|
-
"location":"header",
|
1442
|
-
"locationName":"x-amz-data-partition"
|
1443
|
-
},
|
1444
|
-
"ParentReference":{"shape":"ObjectReference"},
|
1445
|
-
"ChildReference":{"shape":"ObjectReference"},
|
1446
|
-
"LinkName":{"shape":"LinkName"}
|
1447
|
-
}
|
1448
|
-
},
|
1449
|
-
"AttachObjectResponse":{
|
1450
|
-
"type":"structure",
|
1451
|
-
"members":{
|
1452
|
-
"AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1453
|
-
}
|
1454
|
-
},
|
1455
|
-
"AttachPolicyRequest":{
|
1456
|
-
"type":"structure",
|
1457
|
-
"required":[
|
1458
|
-
"DirectoryArn",
|
1459
|
-
"PolicyReference",
|
1460
|
-
"ObjectReference"
|
1461
|
-
],
|
1462
|
-
"members":{
|
1463
|
-
"DirectoryArn":{
|
1464
|
-
"shape":"Arn",
|
1465
|
-
"location":"header",
|
1466
|
-
"locationName":"x-amz-data-partition"
|
1467
|
-
},
|
1468
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
1469
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1470
|
-
}
|
1471
|
-
},
|
1472
|
-
"AttachPolicyResponse":{
|
1473
|
-
"type":"structure",
|
1474
|
-
"members":{
|
1475
|
-
}
|
1476
|
-
},
|
1477
|
-
"AttachToIndexRequest":{
|
1478
|
-
"type":"structure",
|
1479
|
-
"required":[
|
1480
|
-
"DirectoryArn",
|
1481
|
-
"IndexReference",
|
1482
|
-
"TargetReference"
|
1483
|
-
],
|
1484
|
-
"members":{
|
1485
|
-
"DirectoryArn":{
|
1486
|
-
"shape":"Arn",
|
1487
|
-
"location":"header",
|
1488
|
-
"locationName":"x-amz-data-partition"
|
1489
|
-
},
|
1490
|
-
"IndexReference":{"shape":"ObjectReference"},
|
1491
|
-
"TargetReference":{"shape":"ObjectReference"}
|
1492
|
-
}
|
1493
|
-
},
|
1494
|
-
"AttachToIndexResponse":{
|
1495
|
-
"type":"structure",
|
1496
|
-
"members":{
|
1497
|
-
"AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1498
|
-
}
|
1499
|
-
},
|
1500
|
-
"AttachTypedLinkRequest":{
|
1501
|
-
"type":"structure",
|
1502
|
-
"required":[
|
1503
|
-
"DirectoryArn",
|
1504
|
-
"SourceObjectReference",
|
1505
|
-
"TargetObjectReference",
|
1506
|
-
"TypedLinkFacet",
|
1507
|
-
"Attributes"
|
1508
|
-
],
|
1509
|
-
"members":{
|
1510
|
-
"DirectoryArn":{
|
1511
|
-
"shape":"Arn",
|
1512
|
-
"location":"header",
|
1513
|
-
"locationName":"x-amz-data-partition"
|
1514
|
-
},
|
1515
|
-
"SourceObjectReference":{"shape":"ObjectReference"},
|
1516
|
-
"TargetObjectReference":{"shape":"ObjectReference"},
|
1517
|
-
"TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
|
1518
|
-
"Attributes":{"shape":"AttributeNameAndValueList"}
|
1519
|
-
}
|
1520
|
-
},
|
1521
|
-
"AttachTypedLinkResponse":{
|
1522
|
-
"type":"structure",
|
1523
|
-
"members":{
|
1524
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
|
1525
|
-
}
|
1526
|
-
},
|
1527
|
-
"AttributeKey":{
|
1528
|
-
"type":"structure",
|
1529
|
-
"required":[
|
1530
|
-
"SchemaArn",
|
1531
|
-
"FacetName",
|
1532
|
-
"Name"
|
1533
|
-
],
|
1534
|
-
"members":{
|
1535
|
-
"SchemaArn":{"shape":"Arn"},
|
1536
|
-
"FacetName":{"shape":"FacetName"},
|
1537
|
-
"Name":{"shape":"AttributeName"}
|
1538
|
-
}
|
1539
|
-
},
|
1540
|
-
"AttributeKeyAndValue":{
|
1541
|
-
"type":"structure",
|
1542
|
-
"required":[
|
1543
|
-
"Key",
|
1544
|
-
"Value"
|
1545
|
-
],
|
1546
|
-
"members":{
|
1547
|
-
"Key":{"shape":"AttributeKey"},
|
1548
|
-
"Value":{"shape":"TypedAttributeValue"}
|
1549
|
-
}
|
1550
|
-
},
|
1551
|
-
"AttributeKeyAndValueList":{
|
1552
|
-
"type":"list",
|
1553
|
-
"member":{"shape":"AttributeKeyAndValue"}
|
1554
|
-
},
|
1555
|
-
"AttributeKeyList":{
|
1556
|
-
"type":"list",
|
1557
|
-
"member":{"shape":"AttributeKey"}
|
1558
|
-
},
|
1559
|
-
"AttributeName":{
|
1560
|
-
"type":"string",
|
1561
|
-
"max":64,
|
1562
|
-
"min":1,
|
1563
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
1564
|
-
},
|
1565
|
-
"AttributeNameAndValue":{
|
1566
|
-
"type":"structure",
|
1567
|
-
"required":[
|
1568
|
-
"AttributeName",
|
1569
|
-
"Value"
|
1570
|
-
],
|
1571
|
-
"members":{
|
1572
|
-
"AttributeName":{"shape":"AttributeName"},
|
1573
|
-
"Value":{"shape":"TypedAttributeValue"}
|
1574
|
-
}
|
1575
|
-
},
|
1576
|
-
"AttributeNameAndValueList":{
|
1577
|
-
"type":"list",
|
1578
|
-
"member":{"shape":"AttributeNameAndValue"}
|
1579
|
-
},
|
1580
|
-
"AttributeNameList":{
|
1581
|
-
"type":"list",
|
1582
|
-
"member":{"shape":"AttributeName"}
|
1583
|
-
},
|
1584
|
-
"BatchAddFacetToObject":{
|
1585
|
-
"type":"structure",
|
1586
|
-
"required":[
|
1587
|
-
"SchemaFacet",
|
1588
|
-
"ObjectAttributeList",
|
1589
|
-
"ObjectReference"
|
1590
|
-
],
|
1591
|
-
"members":{
|
1592
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
1593
|
-
"ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
|
1594
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1595
|
-
}
|
1596
|
-
},
|
1597
|
-
"BatchAddFacetToObjectResponse":{
|
1598
|
-
"type":"structure",
|
1599
|
-
"members":{
|
1600
|
-
}
|
1601
|
-
},
|
1602
|
-
"BatchAttachObject":{
|
1603
|
-
"type":"structure",
|
1604
|
-
"required":[
|
1605
|
-
"ParentReference",
|
1606
|
-
"ChildReference",
|
1607
|
-
"LinkName"
|
1608
|
-
],
|
1609
|
-
"members":{
|
1610
|
-
"ParentReference":{"shape":"ObjectReference"},
|
1611
|
-
"ChildReference":{"shape":"ObjectReference"},
|
1612
|
-
"LinkName":{"shape":"LinkName"}
|
1613
|
-
}
|
1614
|
-
},
|
1615
|
-
"BatchAttachObjectResponse":{
|
1616
|
-
"type":"structure",
|
1617
|
-
"members":{
|
1618
|
-
"attachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1619
|
-
}
|
1620
|
-
},
|
1621
|
-
"BatchAttachPolicy":{
|
1622
|
-
"type":"structure",
|
1623
|
-
"required":[
|
1624
|
-
"PolicyReference",
|
1625
|
-
"ObjectReference"
|
1626
|
-
],
|
1627
|
-
"members":{
|
1628
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
1629
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1630
|
-
}
|
1631
|
-
},
|
1632
|
-
"BatchAttachPolicyResponse":{
|
1633
|
-
"type":"structure",
|
1634
|
-
"members":{
|
1635
|
-
}
|
1636
|
-
},
|
1637
|
-
"BatchAttachToIndex":{
|
1638
|
-
"type":"structure",
|
1639
|
-
"required":[
|
1640
|
-
"IndexReference",
|
1641
|
-
"TargetReference"
|
1642
|
-
],
|
1643
|
-
"members":{
|
1644
|
-
"IndexReference":{"shape":"ObjectReference"},
|
1645
|
-
"TargetReference":{"shape":"ObjectReference"}
|
1646
|
-
}
|
1647
|
-
},
|
1648
|
-
"BatchAttachToIndexResponse":{
|
1649
|
-
"type":"structure",
|
1650
|
-
"members":{
|
1651
|
-
"AttachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1652
|
-
}
|
1653
|
-
},
|
1654
|
-
"BatchAttachTypedLink":{
|
1655
|
-
"type":"structure",
|
1656
|
-
"required":[
|
1657
|
-
"SourceObjectReference",
|
1658
|
-
"TargetObjectReference",
|
1659
|
-
"TypedLinkFacet",
|
1660
|
-
"Attributes"
|
1661
|
-
],
|
1662
|
-
"members":{
|
1663
|
-
"SourceObjectReference":{"shape":"ObjectReference"},
|
1664
|
-
"TargetObjectReference":{"shape":"ObjectReference"},
|
1665
|
-
"TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
|
1666
|
-
"Attributes":{"shape":"AttributeNameAndValueList"}
|
1667
|
-
}
|
1668
|
-
},
|
1669
|
-
"BatchAttachTypedLinkResponse":{
|
1670
|
-
"type":"structure",
|
1671
|
-
"members":{
|
1672
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
|
1673
|
-
}
|
1674
|
-
},
|
1675
|
-
"BatchCreateIndex":{
|
1676
|
-
"type":"structure",
|
1677
|
-
"required":[
|
1678
|
-
"OrderedIndexedAttributeList",
|
1679
|
-
"IsUnique"
|
1680
|
-
],
|
1681
|
-
"members":{
|
1682
|
-
"OrderedIndexedAttributeList":{"shape":"AttributeKeyList"},
|
1683
|
-
"IsUnique":{"shape":"Bool"},
|
1684
|
-
"ParentReference":{"shape":"ObjectReference"},
|
1685
|
-
"LinkName":{"shape":"LinkName"},
|
1686
|
-
"BatchReferenceName":{"shape":"BatchReferenceName"}
|
1687
|
-
}
|
1688
|
-
},
|
1689
|
-
"BatchCreateIndexResponse":{
|
1690
|
-
"type":"structure",
|
1691
|
-
"members":{
|
1692
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1693
|
-
}
|
1694
|
-
},
|
1695
|
-
"BatchCreateObject":{
|
1696
|
-
"type":"structure",
|
1697
|
-
"required":[
|
1698
|
-
"SchemaFacet",
|
1699
|
-
"ObjectAttributeList"
|
1700
|
-
],
|
1701
|
-
"members":{
|
1702
|
-
"SchemaFacet":{"shape":"SchemaFacetList"},
|
1703
|
-
"ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
|
1704
|
-
"ParentReference":{"shape":"ObjectReference"},
|
1705
|
-
"LinkName":{"shape":"LinkName"},
|
1706
|
-
"BatchReferenceName":{"shape":"BatchReferenceName"}
|
1707
|
-
}
|
1708
|
-
},
|
1709
|
-
"BatchCreateObjectResponse":{
|
1710
|
-
"type":"structure",
|
1711
|
-
"members":{
|
1712
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1713
|
-
}
|
1714
|
-
},
|
1715
|
-
"BatchDeleteObject":{
|
1716
|
-
"type":"structure",
|
1717
|
-
"required":["ObjectReference"],
|
1718
|
-
"members":{
|
1719
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1720
|
-
}
|
1721
|
-
},
|
1722
|
-
"BatchDeleteObjectResponse":{
|
1723
|
-
"type":"structure",
|
1724
|
-
"members":{
|
1725
|
-
}
|
1726
|
-
},
|
1727
|
-
"BatchDetachFromIndex":{
|
1728
|
-
"type":"structure",
|
1729
|
-
"required":[
|
1730
|
-
"IndexReference",
|
1731
|
-
"TargetReference"
|
1732
|
-
],
|
1733
|
-
"members":{
|
1734
|
-
"IndexReference":{"shape":"ObjectReference"},
|
1735
|
-
"TargetReference":{"shape":"ObjectReference"}
|
1736
|
-
}
|
1737
|
-
},
|
1738
|
-
"BatchDetachFromIndexResponse":{
|
1739
|
-
"type":"structure",
|
1740
|
-
"members":{
|
1741
|
-
"DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1742
|
-
}
|
1743
|
-
},
|
1744
|
-
"BatchDetachObject":{
|
1745
|
-
"type":"structure",
|
1746
|
-
"required":[
|
1747
|
-
"ParentReference",
|
1748
|
-
"LinkName"
|
1749
|
-
],
|
1750
|
-
"members":{
|
1751
|
-
"ParentReference":{"shape":"ObjectReference"},
|
1752
|
-
"LinkName":{"shape":"LinkName"},
|
1753
|
-
"BatchReferenceName":{"shape":"BatchReferenceName"}
|
1754
|
-
}
|
1755
|
-
},
|
1756
|
-
"BatchDetachObjectResponse":{
|
1757
|
-
"type":"structure",
|
1758
|
-
"members":{
|
1759
|
-
"detachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1760
|
-
}
|
1761
|
-
},
|
1762
|
-
"BatchDetachPolicy":{
|
1763
|
-
"type":"structure",
|
1764
|
-
"required":[
|
1765
|
-
"PolicyReference",
|
1766
|
-
"ObjectReference"
|
1767
|
-
],
|
1768
|
-
"members":{
|
1769
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
1770
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1771
|
-
}
|
1772
|
-
},
|
1773
|
-
"BatchDetachPolicyResponse":{
|
1774
|
-
"type":"structure",
|
1775
|
-
"members":{
|
1776
|
-
}
|
1777
|
-
},
|
1778
|
-
"BatchDetachTypedLink":{
|
1779
|
-
"type":"structure",
|
1780
|
-
"required":["TypedLinkSpecifier"],
|
1781
|
-
"members":{
|
1782
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
|
1783
|
-
}
|
1784
|
-
},
|
1785
|
-
"BatchDetachTypedLinkResponse":{
|
1786
|
-
"type":"structure",
|
1787
|
-
"members":{
|
1788
|
-
}
|
1789
|
-
},
|
1790
|
-
"BatchGetLinkAttributes":{
|
1791
|
-
"type":"structure",
|
1792
|
-
"required":[
|
1793
|
-
"TypedLinkSpecifier",
|
1794
|
-
"AttributeNames"
|
1795
|
-
],
|
1796
|
-
"members":{
|
1797
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
|
1798
|
-
"AttributeNames":{"shape":"AttributeNameList"}
|
1799
|
-
}
|
1800
|
-
},
|
1801
|
-
"BatchGetLinkAttributesResponse":{
|
1802
|
-
"type":"structure",
|
1803
|
-
"members":{
|
1804
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"}
|
1805
|
-
}
|
1806
|
-
},
|
1807
|
-
"BatchGetObjectAttributes":{
|
1808
|
-
"type":"structure",
|
1809
|
-
"required":[
|
1810
|
-
"ObjectReference",
|
1811
|
-
"SchemaFacet",
|
1812
|
-
"AttributeNames"
|
1813
|
-
],
|
1814
|
-
"members":{
|
1815
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1816
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
1817
|
-
"AttributeNames":{"shape":"AttributeNameList"}
|
1818
|
-
}
|
1819
|
-
},
|
1820
|
-
"BatchGetObjectAttributesResponse":{
|
1821
|
-
"type":"structure",
|
1822
|
-
"members":{
|
1823
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"}
|
1824
|
-
}
|
1825
|
-
},
|
1826
|
-
"BatchGetObjectInformation":{
|
1827
|
-
"type":"structure",
|
1828
|
-
"required":["ObjectReference"],
|
1829
|
-
"members":{
|
1830
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
1831
|
-
}
|
1832
|
-
},
|
1833
|
-
"BatchGetObjectInformationResponse":{
|
1834
|
-
"type":"structure",
|
1835
|
-
"members":{
|
1836
|
-
"SchemaFacets":{"shape":"SchemaFacetList"},
|
1837
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
1838
|
-
}
|
1839
|
-
},
|
1840
|
-
"BatchListAttachedIndices":{
|
1841
|
-
"type":"structure",
|
1842
|
-
"required":["TargetReference"],
|
1843
|
-
"members":{
|
1844
|
-
"TargetReference":{"shape":"ObjectReference"},
|
1845
|
-
"NextToken":{"shape":"NextToken"},
|
1846
|
-
"MaxResults":{"shape":"NumberResults"}
|
1847
|
-
}
|
1848
|
-
},
|
1849
|
-
"BatchListAttachedIndicesResponse":{
|
1850
|
-
"type":"structure",
|
1851
|
-
"members":{
|
1852
|
-
"IndexAttachments":{"shape":"IndexAttachmentList"},
|
1853
|
-
"NextToken":{"shape":"NextToken"}
|
1854
|
-
}
|
1855
|
-
},
|
1856
|
-
"BatchListIncomingTypedLinks":{
|
1857
|
-
"type":"structure",
|
1858
|
-
"required":["ObjectReference"],
|
1859
|
-
"members":{
|
1860
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1861
|
-
"FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
|
1862
|
-
"FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
|
1863
|
-
"NextToken":{"shape":"NextToken"},
|
1864
|
-
"MaxResults":{"shape":"NumberResults"}
|
1865
|
-
}
|
1866
|
-
},
|
1867
|
-
"BatchListIncomingTypedLinksResponse":{
|
1868
|
-
"type":"structure",
|
1869
|
-
"members":{
|
1870
|
-
"LinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
|
1871
|
-
"NextToken":{"shape":"NextToken"}
|
1872
|
-
}
|
1873
|
-
},
|
1874
|
-
"BatchListIndex":{
|
1875
|
-
"type":"structure",
|
1876
|
-
"required":["IndexReference"],
|
1877
|
-
"members":{
|
1878
|
-
"RangesOnIndexedValues":{"shape":"ObjectAttributeRangeList"},
|
1879
|
-
"IndexReference":{"shape":"ObjectReference"},
|
1880
|
-
"MaxResults":{"shape":"NumberResults"},
|
1881
|
-
"NextToken":{"shape":"NextToken"}
|
1882
|
-
}
|
1883
|
-
},
|
1884
|
-
"BatchListIndexResponse":{
|
1885
|
-
"type":"structure",
|
1886
|
-
"members":{
|
1887
|
-
"IndexAttachments":{"shape":"IndexAttachmentList"},
|
1888
|
-
"NextToken":{"shape":"NextToken"}
|
1889
|
-
}
|
1890
|
-
},
|
1891
|
-
"BatchListObjectAttributes":{
|
1892
|
-
"type":"structure",
|
1893
|
-
"required":["ObjectReference"],
|
1894
|
-
"members":{
|
1895
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1896
|
-
"NextToken":{"shape":"NextToken"},
|
1897
|
-
"MaxResults":{"shape":"NumberResults"},
|
1898
|
-
"FacetFilter":{"shape":"SchemaFacet"}
|
1899
|
-
}
|
1900
|
-
},
|
1901
|
-
"BatchListObjectAttributesResponse":{
|
1902
|
-
"type":"structure",
|
1903
|
-
"members":{
|
1904
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"},
|
1905
|
-
"NextToken":{"shape":"NextToken"}
|
1906
|
-
}
|
1907
|
-
},
|
1908
|
-
"BatchListObjectChildren":{
|
1909
|
-
"type":"structure",
|
1910
|
-
"required":["ObjectReference"],
|
1911
|
-
"members":{
|
1912
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1913
|
-
"NextToken":{"shape":"NextToken"},
|
1914
|
-
"MaxResults":{"shape":"NumberResults"}
|
1915
|
-
}
|
1916
|
-
},
|
1917
|
-
"BatchListObjectChildrenResponse":{
|
1918
|
-
"type":"structure",
|
1919
|
-
"members":{
|
1920
|
-
"Children":{"shape":"LinkNameToObjectIdentifierMap"},
|
1921
|
-
"NextToken":{"shape":"NextToken"}
|
1922
|
-
}
|
1923
|
-
},
|
1924
|
-
"BatchListObjectParentPaths":{
|
1925
|
-
"type":"structure",
|
1926
|
-
"required":["ObjectReference"],
|
1927
|
-
"members":{
|
1928
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1929
|
-
"NextToken":{"shape":"NextToken"},
|
1930
|
-
"MaxResults":{"shape":"NumberResults"}
|
1931
|
-
}
|
1932
|
-
},
|
1933
|
-
"BatchListObjectParentPathsResponse":{
|
1934
|
-
"type":"structure",
|
1935
|
-
"members":{
|
1936
|
-
"PathToObjectIdentifiersList":{"shape":"PathToObjectIdentifiersList"},
|
1937
|
-
"NextToken":{"shape":"NextToken"}
|
1938
|
-
}
|
1939
|
-
},
|
1940
|
-
"BatchListObjectPolicies":{
|
1941
|
-
"type":"structure",
|
1942
|
-
"required":["ObjectReference"],
|
1943
|
-
"members":{
|
1944
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1945
|
-
"NextToken":{"shape":"NextToken"},
|
1946
|
-
"MaxResults":{"shape":"NumberResults"}
|
1947
|
-
}
|
1948
|
-
},
|
1949
|
-
"BatchListObjectPoliciesResponse":{
|
1950
|
-
"type":"structure",
|
1951
|
-
"members":{
|
1952
|
-
"AttachedPolicyIds":{"shape":"ObjectIdentifierList"},
|
1953
|
-
"NextToken":{"shape":"NextToken"}
|
1954
|
-
}
|
1955
|
-
},
|
1956
|
-
"BatchListOutgoingTypedLinks":{
|
1957
|
-
"type":"structure",
|
1958
|
-
"required":["ObjectReference"],
|
1959
|
-
"members":{
|
1960
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1961
|
-
"FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
|
1962
|
-
"FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
|
1963
|
-
"NextToken":{"shape":"NextToken"},
|
1964
|
-
"MaxResults":{"shape":"NumberResults"}
|
1965
|
-
}
|
1966
|
-
},
|
1967
|
-
"BatchListOutgoingTypedLinksResponse":{
|
1968
|
-
"type":"structure",
|
1969
|
-
"members":{
|
1970
|
-
"TypedLinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
|
1971
|
-
"NextToken":{"shape":"NextToken"}
|
1972
|
-
}
|
1973
|
-
},
|
1974
|
-
"BatchListPolicyAttachments":{
|
1975
|
-
"type":"structure",
|
1976
|
-
"required":["PolicyReference"],
|
1977
|
-
"members":{
|
1978
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
1979
|
-
"NextToken":{"shape":"NextToken"},
|
1980
|
-
"MaxResults":{"shape":"NumberResults"}
|
1981
|
-
}
|
1982
|
-
},
|
1983
|
-
"BatchListPolicyAttachmentsResponse":{
|
1984
|
-
"type":"structure",
|
1985
|
-
"members":{
|
1986
|
-
"ObjectIdentifiers":{"shape":"ObjectIdentifierList"},
|
1987
|
-
"NextToken":{"shape":"NextToken"}
|
1988
|
-
}
|
1989
|
-
},
|
1990
|
-
"BatchLookupPolicy":{
|
1991
|
-
"type":"structure",
|
1992
|
-
"required":["ObjectReference"],
|
1993
|
-
"members":{
|
1994
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
1995
|
-
"NextToken":{"shape":"NextToken"},
|
1996
|
-
"MaxResults":{"shape":"NumberResults"}
|
1997
|
-
}
|
1998
|
-
},
|
1999
|
-
"BatchLookupPolicyResponse":{
|
2000
|
-
"type":"structure",
|
2001
|
-
"members":{
|
2002
|
-
"PolicyToPathList":{"shape":"PolicyToPathList"},
|
2003
|
-
"NextToken":{"shape":"NextToken"}
|
2004
|
-
}
|
2005
|
-
},
|
2006
|
-
"BatchOperationIndex":{"type":"integer"},
|
2007
|
-
"BatchReadException":{
|
2008
|
-
"type":"structure",
|
2009
|
-
"members":{
|
2010
|
-
"Type":{"shape":"BatchReadExceptionType"},
|
2011
|
-
"Message":{"shape":"ExceptionMessage"}
|
2012
|
-
}
|
2013
|
-
},
|
2014
|
-
"BatchReadExceptionType":{
|
2015
|
-
"type":"string",
|
2016
|
-
"enum":[
|
2017
|
-
"ValidationException",
|
2018
|
-
"InvalidArnException",
|
2019
|
-
"ResourceNotFoundException",
|
2020
|
-
"InvalidNextTokenException",
|
2021
|
-
"AccessDeniedException",
|
2022
|
-
"NotNodeException",
|
2023
|
-
"FacetValidationException",
|
2024
|
-
"CannotListParentOfRootException",
|
2025
|
-
"NotIndexException",
|
2026
|
-
"NotPolicyException",
|
2027
|
-
"DirectoryNotEnabledException",
|
2028
|
-
"LimitExceededException",
|
2029
|
-
"InternalServiceException"
|
2030
|
-
]
|
2031
|
-
},
|
2032
|
-
"BatchReadOperation":{
|
2033
|
-
"type":"structure",
|
2034
|
-
"members":{
|
2035
|
-
"ListObjectAttributes":{"shape":"BatchListObjectAttributes"},
|
2036
|
-
"ListObjectChildren":{"shape":"BatchListObjectChildren"},
|
2037
|
-
"ListAttachedIndices":{"shape":"BatchListAttachedIndices"},
|
2038
|
-
"ListObjectParentPaths":{"shape":"BatchListObjectParentPaths"},
|
2039
|
-
"GetObjectInformation":{"shape":"BatchGetObjectInformation"},
|
2040
|
-
"GetObjectAttributes":{"shape":"BatchGetObjectAttributes"},
|
2041
|
-
"ListObjectPolicies":{"shape":"BatchListObjectPolicies"},
|
2042
|
-
"ListPolicyAttachments":{"shape":"BatchListPolicyAttachments"},
|
2043
|
-
"LookupPolicy":{"shape":"BatchLookupPolicy"},
|
2044
|
-
"ListIndex":{"shape":"BatchListIndex"},
|
2045
|
-
"ListOutgoingTypedLinks":{"shape":"BatchListOutgoingTypedLinks"},
|
2046
|
-
"ListIncomingTypedLinks":{"shape":"BatchListIncomingTypedLinks"},
|
2047
|
-
"GetLinkAttributes":{"shape":"BatchGetLinkAttributes"}
|
2048
|
-
}
|
2049
|
-
},
|
2050
|
-
"BatchReadOperationList":{
|
2051
|
-
"type":"list",
|
2052
|
-
"member":{"shape":"BatchReadOperation"}
|
2053
|
-
},
|
2054
|
-
"BatchReadOperationResponse":{
|
2055
|
-
"type":"structure",
|
2056
|
-
"members":{
|
2057
|
-
"SuccessfulResponse":{"shape":"BatchReadSuccessfulResponse"},
|
2058
|
-
"ExceptionResponse":{"shape":"BatchReadException"}
|
2059
|
-
}
|
2060
|
-
},
|
2061
|
-
"BatchReadOperationResponseList":{
|
2062
|
-
"type":"list",
|
2063
|
-
"member":{"shape":"BatchReadOperationResponse"}
|
2064
|
-
},
|
2065
|
-
"BatchReadRequest":{
|
2066
|
-
"type":"structure",
|
2067
|
-
"required":[
|
2068
|
-
"DirectoryArn",
|
2069
|
-
"Operations"
|
2070
|
-
],
|
2071
|
-
"members":{
|
2072
|
-
"DirectoryArn":{
|
2073
|
-
"shape":"Arn",
|
2074
|
-
"location":"header",
|
2075
|
-
"locationName":"x-amz-data-partition"
|
2076
|
-
},
|
2077
|
-
"Operations":{"shape":"BatchReadOperationList"},
|
2078
|
-
"ConsistencyLevel":{
|
2079
|
-
"shape":"ConsistencyLevel",
|
2080
|
-
"location":"header",
|
2081
|
-
"locationName":"x-amz-consistency-level"
|
2082
|
-
}
|
2083
|
-
}
|
2084
|
-
},
|
2085
|
-
"BatchReadResponse":{
|
2086
|
-
"type":"structure",
|
2087
|
-
"members":{
|
2088
|
-
"Responses":{"shape":"BatchReadOperationResponseList"}
|
2089
|
-
}
|
2090
|
-
},
|
2091
|
-
"BatchReadSuccessfulResponse":{
|
2092
|
-
"type":"structure",
|
2093
|
-
"members":{
|
2094
|
-
"ListObjectAttributes":{"shape":"BatchListObjectAttributesResponse"},
|
2095
|
-
"ListObjectChildren":{"shape":"BatchListObjectChildrenResponse"},
|
2096
|
-
"GetObjectInformation":{"shape":"BatchGetObjectInformationResponse"},
|
2097
|
-
"GetObjectAttributes":{"shape":"BatchGetObjectAttributesResponse"},
|
2098
|
-
"ListAttachedIndices":{"shape":"BatchListAttachedIndicesResponse"},
|
2099
|
-
"ListObjectParentPaths":{"shape":"BatchListObjectParentPathsResponse"},
|
2100
|
-
"ListObjectPolicies":{"shape":"BatchListObjectPoliciesResponse"},
|
2101
|
-
"ListPolicyAttachments":{"shape":"BatchListPolicyAttachmentsResponse"},
|
2102
|
-
"LookupPolicy":{"shape":"BatchLookupPolicyResponse"},
|
2103
|
-
"ListIndex":{"shape":"BatchListIndexResponse"},
|
2104
|
-
"ListOutgoingTypedLinks":{"shape":"BatchListOutgoingTypedLinksResponse"},
|
2105
|
-
"ListIncomingTypedLinks":{"shape":"BatchListIncomingTypedLinksResponse"},
|
2106
|
-
"GetLinkAttributes":{"shape":"BatchGetLinkAttributesResponse"}
|
2107
|
-
}
|
2108
|
-
},
|
2109
|
-
"BatchReferenceName":{"type":"string"},
|
2110
|
-
"BatchRemoveFacetFromObject":{
|
2111
|
-
"type":"structure",
|
2112
|
-
"required":[
|
2113
|
-
"SchemaFacet",
|
2114
|
-
"ObjectReference"
|
2115
|
-
],
|
2116
|
-
"members":{
|
2117
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
2118
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
2119
|
-
}
|
2120
|
-
},
|
2121
|
-
"BatchRemoveFacetFromObjectResponse":{
|
2122
|
-
"type":"structure",
|
2123
|
-
"members":{
|
2124
|
-
}
|
2125
|
-
},
|
2126
|
-
"BatchUpdateLinkAttributes":{
|
2127
|
-
"type":"structure",
|
2128
|
-
"required":[
|
2129
|
-
"TypedLinkSpecifier",
|
2130
|
-
"AttributeUpdates"
|
2131
|
-
],
|
2132
|
-
"members":{
|
2133
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
|
2134
|
-
"AttributeUpdates":{"shape":"LinkAttributeUpdateList"}
|
2135
|
-
}
|
2136
|
-
},
|
2137
|
-
"BatchUpdateLinkAttributesResponse":{
|
2138
|
-
"type":"structure",
|
2139
|
-
"members":{
|
2140
|
-
}
|
2141
|
-
},
|
2142
|
-
"BatchUpdateObjectAttributes":{
|
2143
|
-
"type":"structure",
|
2144
|
-
"required":[
|
2145
|
-
"ObjectReference",
|
2146
|
-
"AttributeUpdates"
|
2147
|
-
],
|
2148
|
-
"members":{
|
2149
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
2150
|
-
"AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
|
2151
|
-
}
|
2152
|
-
},
|
2153
|
-
"BatchUpdateObjectAttributesResponse":{
|
2154
|
-
"type":"structure",
|
2155
|
-
"members":{
|
2156
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2157
|
-
}
|
2158
|
-
},
|
2159
|
-
"BatchWriteException":{
|
2160
|
-
"type":"structure",
|
2161
|
-
"members":{
|
2162
|
-
"Index":{"shape":"BatchOperationIndex"},
|
2163
|
-
"Type":{"shape":"BatchWriteExceptionType"},
|
2164
|
-
"Message":{"shape":"ExceptionMessage"}
|
2165
|
-
},
|
2166
|
-
"exception":true
|
2167
|
-
},
|
2168
|
-
"BatchWriteExceptionType":{
|
2169
|
-
"type":"string",
|
2170
|
-
"enum":[
|
2171
|
-
"InternalServiceException",
|
2172
|
-
"ValidationException",
|
2173
|
-
"InvalidArnException",
|
2174
|
-
"LinkNameAlreadyInUseException",
|
2175
|
-
"StillContainsLinksException",
|
2176
|
-
"FacetValidationException",
|
2177
|
-
"ObjectNotDetachedException",
|
2178
|
-
"ResourceNotFoundException",
|
2179
|
-
"AccessDeniedException",
|
2180
|
-
"InvalidAttachmentException",
|
2181
|
-
"NotIndexException",
|
2182
|
-
"NotNodeException",
|
2183
|
-
"IndexedAttributeMissingException",
|
2184
|
-
"ObjectAlreadyDetachedException",
|
2185
|
-
"NotPolicyException",
|
2186
|
-
"DirectoryNotEnabledException",
|
2187
|
-
"LimitExceededException",
|
2188
|
-
"UnsupportedIndexTypeException"
|
2189
|
-
]
|
2190
|
-
},
|
2191
|
-
"BatchWriteOperation":{
|
2192
|
-
"type":"structure",
|
2193
|
-
"members":{
|
2194
|
-
"CreateObject":{"shape":"BatchCreateObject"},
|
2195
|
-
"AttachObject":{"shape":"BatchAttachObject"},
|
2196
|
-
"DetachObject":{"shape":"BatchDetachObject"},
|
2197
|
-
"UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributes"},
|
2198
|
-
"DeleteObject":{"shape":"BatchDeleteObject"},
|
2199
|
-
"AddFacetToObject":{"shape":"BatchAddFacetToObject"},
|
2200
|
-
"RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObject"},
|
2201
|
-
"AttachPolicy":{"shape":"BatchAttachPolicy"},
|
2202
|
-
"DetachPolicy":{"shape":"BatchDetachPolicy"},
|
2203
|
-
"CreateIndex":{"shape":"BatchCreateIndex"},
|
2204
|
-
"AttachToIndex":{"shape":"BatchAttachToIndex"},
|
2205
|
-
"DetachFromIndex":{"shape":"BatchDetachFromIndex"},
|
2206
|
-
"AttachTypedLink":{"shape":"BatchAttachTypedLink"},
|
2207
|
-
"DetachTypedLink":{"shape":"BatchDetachTypedLink"},
|
2208
|
-
"UpdateLinkAttributes":{"shape":"BatchUpdateLinkAttributes"}
|
2209
|
-
}
|
2210
|
-
},
|
2211
|
-
"BatchWriteOperationList":{
|
2212
|
-
"type":"list",
|
2213
|
-
"member":{"shape":"BatchWriteOperation"}
|
2214
|
-
},
|
2215
|
-
"BatchWriteOperationResponse":{
|
2216
|
-
"type":"structure",
|
2217
|
-
"members":{
|
2218
|
-
"CreateObject":{"shape":"BatchCreateObjectResponse"},
|
2219
|
-
"AttachObject":{"shape":"BatchAttachObjectResponse"},
|
2220
|
-
"DetachObject":{"shape":"BatchDetachObjectResponse"},
|
2221
|
-
"UpdateObjectAttributes":{"shape":"BatchUpdateObjectAttributesResponse"},
|
2222
|
-
"DeleteObject":{"shape":"BatchDeleteObjectResponse"},
|
2223
|
-
"AddFacetToObject":{"shape":"BatchAddFacetToObjectResponse"},
|
2224
|
-
"RemoveFacetFromObject":{"shape":"BatchRemoveFacetFromObjectResponse"},
|
2225
|
-
"AttachPolicy":{"shape":"BatchAttachPolicyResponse"},
|
2226
|
-
"DetachPolicy":{"shape":"BatchDetachPolicyResponse"},
|
2227
|
-
"CreateIndex":{"shape":"BatchCreateIndexResponse"},
|
2228
|
-
"AttachToIndex":{"shape":"BatchAttachToIndexResponse"},
|
2229
|
-
"DetachFromIndex":{"shape":"BatchDetachFromIndexResponse"},
|
2230
|
-
"AttachTypedLink":{"shape":"BatchAttachTypedLinkResponse"},
|
2231
|
-
"DetachTypedLink":{"shape":"BatchDetachTypedLinkResponse"},
|
2232
|
-
"UpdateLinkAttributes":{"shape":"BatchUpdateLinkAttributesResponse"}
|
2233
|
-
}
|
2234
|
-
},
|
2235
|
-
"BatchWriteOperationResponseList":{
|
2236
|
-
"type":"list",
|
2237
|
-
"member":{"shape":"BatchWriteOperationResponse"}
|
2238
|
-
},
|
2239
|
-
"BatchWriteRequest":{
|
2240
|
-
"type":"structure",
|
2241
|
-
"required":[
|
2242
|
-
"DirectoryArn",
|
2243
|
-
"Operations"
|
2244
|
-
],
|
2245
|
-
"members":{
|
2246
|
-
"DirectoryArn":{
|
2247
|
-
"shape":"Arn",
|
2248
|
-
"location":"header",
|
2249
|
-
"locationName":"x-amz-data-partition"
|
2250
|
-
},
|
2251
|
-
"Operations":{"shape":"BatchWriteOperationList"}
|
2252
|
-
}
|
2253
|
-
},
|
2254
|
-
"BatchWriteResponse":{
|
2255
|
-
"type":"structure",
|
2256
|
-
"members":{
|
2257
|
-
"Responses":{"shape":"BatchWriteOperationResponseList"}
|
2258
|
-
}
|
2259
|
-
},
|
2260
|
-
"BinaryAttributeValue":{"type":"blob"},
|
2261
|
-
"Bool":{"type":"boolean"},
|
2262
|
-
"BooleanAttributeValue":{"type":"boolean"},
|
2263
|
-
"CannotListParentOfRootException":{
|
2264
|
-
"type":"structure",
|
2265
|
-
"members":{
|
2266
|
-
"Message":{"shape":"ExceptionMessage"}
|
2267
|
-
},
|
2268
|
-
"error":{"httpStatusCode":400},
|
2269
|
-
"exception":true
|
2270
|
-
},
|
2271
|
-
"ConsistencyLevel":{
|
2272
|
-
"type":"string",
|
2273
|
-
"enum":[
|
2274
|
-
"SERIALIZABLE",
|
2275
|
-
"EVENTUAL"
|
2276
|
-
]
|
2277
|
-
},
|
2278
|
-
"CreateDirectoryRequest":{
|
2279
|
-
"type":"structure",
|
2280
|
-
"required":[
|
2281
|
-
"Name",
|
2282
|
-
"SchemaArn"
|
2283
|
-
],
|
2284
|
-
"members":{
|
2285
|
-
"Name":{"shape":"DirectoryName"},
|
2286
|
-
"SchemaArn":{
|
2287
|
-
"shape":"Arn",
|
2288
|
-
"location":"header",
|
2289
|
-
"locationName":"x-amz-data-partition"
|
2290
|
-
}
|
2291
|
-
}
|
2292
|
-
},
|
2293
|
-
"CreateDirectoryResponse":{
|
2294
|
-
"type":"structure",
|
2295
|
-
"required":[
|
2296
|
-
"DirectoryArn",
|
2297
|
-
"Name",
|
2298
|
-
"ObjectIdentifier",
|
2299
|
-
"AppliedSchemaArn"
|
2300
|
-
],
|
2301
|
-
"members":{
|
2302
|
-
"DirectoryArn":{"shape":"DirectoryArn"},
|
2303
|
-
"Name":{"shape":"DirectoryName"},
|
2304
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"},
|
2305
|
-
"AppliedSchemaArn":{"shape":"Arn"}
|
2306
|
-
}
|
2307
|
-
},
|
2308
|
-
"CreateFacetRequest":{
|
2309
|
-
"type":"structure",
|
2310
|
-
"required":[
|
2311
|
-
"SchemaArn",
|
2312
|
-
"Name",
|
2313
|
-
"ObjectType"
|
2314
|
-
],
|
2315
|
-
"members":{
|
2316
|
-
"SchemaArn":{
|
2317
|
-
"shape":"Arn",
|
2318
|
-
"location":"header",
|
2319
|
-
"locationName":"x-amz-data-partition"
|
2320
|
-
},
|
2321
|
-
"Name":{"shape":"FacetName"},
|
2322
|
-
"Attributes":{"shape":"FacetAttributeList"},
|
2323
|
-
"ObjectType":{"shape":"ObjectType"}
|
2324
|
-
}
|
2325
|
-
},
|
2326
|
-
"CreateFacetResponse":{
|
2327
|
-
"type":"structure",
|
2328
|
-
"members":{
|
2329
|
-
}
|
2330
|
-
},
|
2331
|
-
"CreateIndexRequest":{
|
2332
|
-
"type":"structure",
|
2333
|
-
"required":[
|
2334
|
-
"DirectoryArn",
|
2335
|
-
"OrderedIndexedAttributeList",
|
2336
|
-
"IsUnique"
|
2337
|
-
],
|
2338
|
-
"members":{
|
2339
|
-
"DirectoryArn":{
|
2340
|
-
"shape":"Arn",
|
2341
|
-
"location":"header",
|
2342
|
-
"locationName":"x-amz-data-partition"
|
2343
|
-
},
|
2344
|
-
"OrderedIndexedAttributeList":{"shape":"AttributeKeyList"},
|
2345
|
-
"IsUnique":{"shape":"Bool"},
|
2346
|
-
"ParentReference":{"shape":"ObjectReference"},
|
2347
|
-
"LinkName":{"shape":"LinkName"}
|
2348
|
-
}
|
2349
|
-
},
|
2350
|
-
"CreateIndexResponse":{
|
2351
|
-
"type":"structure",
|
2352
|
-
"members":{
|
2353
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2354
|
-
}
|
2355
|
-
},
|
2356
|
-
"CreateObjectRequest":{
|
2357
|
-
"type":"structure",
|
2358
|
-
"required":[
|
2359
|
-
"DirectoryArn",
|
2360
|
-
"SchemaFacets"
|
2361
|
-
],
|
2362
|
-
"members":{
|
2363
|
-
"DirectoryArn":{
|
2364
|
-
"shape":"Arn",
|
2365
|
-
"location":"header",
|
2366
|
-
"locationName":"x-amz-data-partition"
|
2367
|
-
},
|
2368
|
-
"SchemaFacets":{"shape":"SchemaFacetList"},
|
2369
|
-
"ObjectAttributeList":{"shape":"AttributeKeyAndValueList"},
|
2370
|
-
"ParentReference":{"shape":"ObjectReference"},
|
2371
|
-
"LinkName":{"shape":"LinkName"}
|
2372
|
-
}
|
2373
|
-
},
|
2374
|
-
"CreateObjectResponse":{
|
2375
|
-
"type":"structure",
|
2376
|
-
"members":{
|
2377
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2378
|
-
}
|
2379
|
-
},
|
2380
|
-
"CreateSchemaRequest":{
|
2381
|
-
"type":"structure",
|
2382
|
-
"required":["Name"],
|
2383
|
-
"members":{
|
2384
|
-
"Name":{"shape":"SchemaName"}
|
2385
|
-
}
|
2386
|
-
},
|
2387
|
-
"CreateSchemaResponse":{
|
2388
|
-
"type":"structure",
|
2389
|
-
"members":{
|
2390
|
-
"SchemaArn":{"shape":"Arn"}
|
2391
|
-
}
|
2392
|
-
},
|
2393
|
-
"CreateTypedLinkFacetRequest":{
|
2394
|
-
"type":"structure",
|
2395
|
-
"required":[
|
2396
|
-
"SchemaArn",
|
2397
|
-
"Facet"
|
2398
|
-
],
|
2399
|
-
"members":{
|
2400
|
-
"SchemaArn":{
|
2401
|
-
"shape":"Arn",
|
2402
|
-
"location":"header",
|
2403
|
-
"locationName":"x-amz-data-partition"
|
2404
|
-
},
|
2405
|
-
"Facet":{"shape":"TypedLinkFacet"}
|
2406
|
-
}
|
2407
|
-
},
|
2408
|
-
"CreateTypedLinkFacetResponse":{
|
2409
|
-
"type":"structure",
|
2410
|
-
"members":{
|
2411
|
-
}
|
2412
|
-
},
|
2413
|
-
"Date":{"type":"timestamp"},
|
2414
|
-
"DatetimeAttributeValue":{"type":"timestamp"},
|
2415
|
-
"DeleteDirectoryRequest":{
|
2416
|
-
"type":"structure",
|
2417
|
-
"required":["DirectoryArn"],
|
2418
|
-
"members":{
|
2419
|
-
"DirectoryArn":{
|
2420
|
-
"shape":"Arn",
|
2421
|
-
"location":"header",
|
2422
|
-
"locationName":"x-amz-data-partition"
|
2423
|
-
}
|
2424
|
-
}
|
2425
|
-
},
|
2426
|
-
"DeleteDirectoryResponse":{
|
2427
|
-
"type":"structure",
|
2428
|
-
"required":["DirectoryArn"],
|
2429
|
-
"members":{
|
2430
|
-
"DirectoryArn":{"shape":"Arn"}
|
2431
|
-
}
|
2432
|
-
},
|
2433
|
-
"DeleteFacetRequest":{
|
2434
|
-
"type":"structure",
|
2435
|
-
"required":[
|
2436
|
-
"SchemaArn",
|
2437
|
-
"Name"
|
2438
|
-
],
|
2439
|
-
"members":{
|
2440
|
-
"SchemaArn":{
|
2441
|
-
"shape":"Arn",
|
2442
|
-
"location":"header",
|
2443
|
-
"locationName":"x-amz-data-partition"
|
2444
|
-
},
|
2445
|
-
"Name":{"shape":"FacetName"}
|
2446
|
-
}
|
2447
|
-
},
|
2448
|
-
"DeleteFacetResponse":{
|
2449
|
-
"type":"structure",
|
2450
|
-
"members":{
|
2451
|
-
}
|
2452
|
-
},
|
2453
|
-
"DeleteObjectRequest":{
|
2454
|
-
"type":"structure",
|
2455
|
-
"required":[
|
2456
|
-
"DirectoryArn",
|
2457
|
-
"ObjectReference"
|
2458
|
-
],
|
2459
|
-
"members":{
|
2460
|
-
"DirectoryArn":{
|
2461
|
-
"shape":"Arn",
|
2462
|
-
"location":"header",
|
2463
|
-
"locationName":"x-amz-data-partition"
|
2464
|
-
},
|
2465
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
2466
|
-
}
|
2467
|
-
},
|
2468
|
-
"DeleteObjectResponse":{
|
2469
|
-
"type":"structure",
|
2470
|
-
"members":{
|
2471
|
-
}
|
2472
|
-
},
|
2473
|
-
"DeleteSchemaRequest":{
|
2474
|
-
"type":"structure",
|
2475
|
-
"required":["SchemaArn"],
|
2476
|
-
"members":{
|
2477
|
-
"SchemaArn":{
|
2478
|
-
"shape":"Arn",
|
2479
|
-
"location":"header",
|
2480
|
-
"locationName":"x-amz-data-partition"
|
2481
|
-
}
|
2482
|
-
}
|
2483
|
-
},
|
2484
|
-
"DeleteSchemaResponse":{
|
2485
|
-
"type":"structure",
|
2486
|
-
"members":{
|
2487
|
-
"SchemaArn":{"shape":"Arn"}
|
2488
|
-
}
|
2489
|
-
},
|
2490
|
-
"DeleteTypedLinkFacetRequest":{
|
2491
|
-
"type":"structure",
|
2492
|
-
"required":[
|
2493
|
-
"SchemaArn",
|
2494
|
-
"Name"
|
2495
|
-
],
|
2496
|
-
"members":{
|
2497
|
-
"SchemaArn":{
|
2498
|
-
"shape":"Arn",
|
2499
|
-
"location":"header",
|
2500
|
-
"locationName":"x-amz-data-partition"
|
2501
|
-
},
|
2502
|
-
"Name":{"shape":"TypedLinkName"}
|
2503
|
-
}
|
2504
|
-
},
|
2505
|
-
"DeleteTypedLinkFacetResponse":{
|
2506
|
-
"type":"structure",
|
2507
|
-
"members":{
|
2508
|
-
}
|
2509
|
-
},
|
2510
|
-
"DetachFromIndexRequest":{
|
2511
|
-
"type":"structure",
|
2512
|
-
"required":[
|
2513
|
-
"DirectoryArn",
|
2514
|
-
"IndexReference",
|
2515
|
-
"TargetReference"
|
2516
|
-
],
|
2517
|
-
"members":{
|
2518
|
-
"DirectoryArn":{
|
2519
|
-
"shape":"Arn",
|
2520
|
-
"location":"header",
|
2521
|
-
"locationName":"x-amz-data-partition"
|
2522
|
-
},
|
2523
|
-
"IndexReference":{"shape":"ObjectReference"},
|
2524
|
-
"TargetReference":{"shape":"ObjectReference"}
|
2525
|
-
}
|
2526
|
-
},
|
2527
|
-
"DetachFromIndexResponse":{
|
2528
|
-
"type":"structure",
|
2529
|
-
"members":{
|
2530
|
-
"DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2531
|
-
}
|
2532
|
-
},
|
2533
|
-
"DetachObjectRequest":{
|
2534
|
-
"type":"structure",
|
2535
|
-
"required":[
|
2536
|
-
"DirectoryArn",
|
2537
|
-
"ParentReference",
|
2538
|
-
"LinkName"
|
2539
|
-
],
|
2540
|
-
"members":{
|
2541
|
-
"DirectoryArn":{
|
2542
|
-
"shape":"Arn",
|
2543
|
-
"location":"header",
|
2544
|
-
"locationName":"x-amz-data-partition"
|
2545
|
-
},
|
2546
|
-
"ParentReference":{"shape":"ObjectReference"},
|
2547
|
-
"LinkName":{"shape":"LinkName"}
|
2548
|
-
}
|
2549
|
-
},
|
2550
|
-
"DetachObjectResponse":{
|
2551
|
-
"type":"structure",
|
2552
|
-
"members":{
|
2553
|
-
"DetachedObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2554
|
-
}
|
2555
|
-
},
|
2556
|
-
"DetachPolicyRequest":{
|
2557
|
-
"type":"structure",
|
2558
|
-
"required":[
|
2559
|
-
"DirectoryArn",
|
2560
|
-
"PolicyReference",
|
2561
|
-
"ObjectReference"
|
2562
|
-
],
|
2563
|
-
"members":{
|
2564
|
-
"DirectoryArn":{
|
2565
|
-
"shape":"Arn",
|
2566
|
-
"location":"header",
|
2567
|
-
"locationName":"x-amz-data-partition"
|
2568
|
-
},
|
2569
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
2570
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
2571
|
-
}
|
2572
|
-
},
|
2573
|
-
"DetachPolicyResponse":{
|
2574
|
-
"type":"structure",
|
2575
|
-
"members":{
|
2576
|
-
}
|
2577
|
-
},
|
2578
|
-
"DetachTypedLinkRequest":{
|
2579
|
-
"type":"structure",
|
2580
|
-
"required":[
|
2581
|
-
"DirectoryArn",
|
2582
|
-
"TypedLinkSpecifier"
|
2583
|
-
],
|
2584
|
-
"members":{
|
2585
|
-
"DirectoryArn":{
|
2586
|
-
"shape":"Arn",
|
2587
|
-
"location":"header",
|
2588
|
-
"locationName":"x-amz-data-partition"
|
2589
|
-
},
|
2590
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"}
|
2591
|
-
}
|
2592
|
-
},
|
2593
|
-
"Directory":{
|
2594
|
-
"type":"structure",
|
2595
|
-
"members":{
|
2596
|
-
"Name":{"shape":"DirectoryName"},
|
2597
|
-
"DirectoryArn":{"shape":"DirectoryArn"},
|
2598
|
-
"State":{"shape":"DirectoryState"},
|
2599
|
-
"CreationDateTime":{"shape":"Date"}
|
2600
|
-
}
|
2601
|
-
},
|
2602
|
-
"DirectoryAlreadyExistsException":{
|
2603
|
-
"type":"structure",
|
2604
|
-
"members":{
|
2605
|
-
"Message":{"shape":"ExceptionMessage"}
|
2606
|
-
},
|
2607
|
-
"error":{"httpStatusCode":400},
|
2608
|
-
"exception":true
|
2609
|
-
},
|
2610
|
-
"DirectoryArn":{"type":"string"},
|
2611
|
-
"DirectoryDeletedException":{
|
2612
|
-
"type":"structure",
|
2613
|
-
"members":{
|
2614
|
-
"Message":{"shape":"ExceptionMessage"}
|
2615
|
-
},
|
2616
|
-
"error":{"httpStatusCode":400},
|
2617
|
-
"exception":true
|
2618
|
-
},
|
2619
|
-
"DirectoryList":{
|
2620
|
-
"type":"list",
|
2621
|
-
"member":{"shape":"Directory"}
|
2622
|
-
},
|
2623
|
-
"DirectoryName":{
|
2624
|
-
"type":"string",
|
2625
|
-
"max":64,
|
2626
|
-
"min":1,
|
2627
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
2628
|
-
},
|
2629
|
-
"DirectoryNotDisabledException":{
|
2630
|
-
"type":"structure",
|
2631
|
-
"members":{
|
2632
|
-
"Message":{"shape":"ExceptionMessage"}
|
2633
|
-
},
|
2634
|
-
"error":{"httpStatusCode":400},
|
2635
|
-
"exception":true
|
2636
|
-
},
|
2637
|
-
"DirectoryNotEnabledException":{
|
2638
|
-
"type":"structure",
|
2639
|
-
"members":{
|
2640
|
-
"Message":{"shape":"ExceptionMessage"}
|
2641
|
-
},
|
2642
|
-
"error":{"httpStatusCode":400},
|
2643
|
-
"exception":true
|
2644
|
-
},
|
2645
|
-
"DirectoryState":{
|
2646
|
-
"type":"string",
|
2647
|
-
"enum":[
|
2648
|
-
"ENABLED",
|
2649
|
-
"DISABLED",
|
2650
|
-
"DELETED"
|
2651
|
-
]
|
2652
|
-
},
|
2653
|
-
"DisableDirectoryRequest":{
|
2654
|
-
"type":"structure",
|
2655
|
-
"required":["DirectoryArn"],
|
2656
|
-
"members":{
|
2657
|
-
"DirectoryArn":{
|
2658
|
-
"shape":"Arn",
|
2659
|
-
"location":"header",
|
2660
|
-
"locationName":"x-amz-data-partition"
|
2661
|
-
}
|
2662
|
-
}
|
2663
|
-
},
|
2664
|
-
"DisableDirectoryResponse":{
|
2665
|
-
"type":"structure",
|
2666
|
-
"required":["DirectoryArn"],
|
2667
|
-
"members":{
|
2668
|
-
"DirectoryArn":{"shape":"Arn"}
|
2669
|
-
}
|
2670
|
-
},
|
2671
|
-
"EnableDirectoryRequest":{
|
2672
|
-
"type":"structure",
|
2673
|
-
"required":["DirectoryArn"],
|
2674
|
-
"members":{
|
2675
|
-
"DirectoryArn":{
|
2676
|
-
"shape":"Arn",
|
2677
|
-
"location":"header",
|
2678
|
-
"locationName":"x-amz-data-partition"
|
2679
|
-
}
|
2680
|
-
}
|
2681
|
-
},
|
2682
|
-
"EnableDirectoryResponse":{
|
2683
|
-
"type":"structure",
|
2684
|
-
"required":["DirectoryArn"],
|
2685
|
-
"members":{
|
2686
|
-
"DirectoryArn":{"shape":"Arn"}
|
2687
|
-
}
|
2688
|
-
},
|
2689
|
-
"ExceptionMessage":{"type":"string"},
|
2690
|
-
"Facet":{
|
2691
|
-
"type":"structure",
|
2692
|
-
"members":{
|
2693
|
-
"Name":{"shape":"FacetName"},
|
2694
|
-
"ObjectType":{"shape":"ObjectType"}
|
2695
|
-
}
|
2696
|
-
},
|
2697
|
-
"FacetAlreadyExistsException":{
|
2698
|
-
"type":"structure",
|
2699
|
-
"members":{
|
2700
|
-
"Message":{"shape":"ExceptionMessage"}
|
2701
|
-
},
|
2702
|
-
"error":{"httpStatusCode":400},
|
2703
|
-
"exception":true
|
2704
|
-
},
|
2705
|
-
"FacetAttribute":{
|
2706
|
-
"type":"structure",
|
2707
|
-
"required":["Name"],
|
2708
|
-
"members":{
|
2709
|
-
"Name":{"shape":"AttributeName"},
|
2710
|
-
"AttributeDefinition":{"shape":"FacetAttributeDefinition"},
|
2711
|
-
"AttributeReference":{"shape":"FacetAttributeReference"},
|
2712
|
-
"RequiredBehavior":{"shape":"RequiredAttributeBehavior"}
|
2713
|
-
}
|
2714
|
-
},
|
2715
|
-
"FacetAttributeDefinition":{
|
2716
|
-
"type":"structure",
|
2717
|
-
"required":["Type"],
|
2718
|
-
"members":{
|
2719
|
-
"Type":{"shape":"FacetAttributeType"},
|
2720
|
-
"DefaultValue":{"shape":"TypedAttributeValue"},
|
2721
|
-
"IsImmutable":{"shape":"Bool"},
|
2722
|
-
"Rules":{"shape":"RuleMap"}
|
2723
|
-
}
|
2724
|
-
},
|
2725
|
-
"FacetAttributeList":{
|
2726
|
-
"type":"list",
|
2727
|
-
"member":{"shape":"FacetAttribute"}
|
2728
|
-
},
|
2729
|
-
"FacetAttributeReference":{
|
2730
|
-
"type":"structure",
|
2731
|
-
"required":[
|
2732
|
-
"TargetFacetName",
|
2733
|
-
"TargetAttributeName"
|
2734
|
-
],
|
2735
|
-
"members":{
|
2736
|
-
"TargetFacetName":{"shape":"FacetName"},
|
2737
|
-
"TargetAttributeName":{"shape":"AttributeName"}
|
2738
|
-
}
|
2739
|
-
},
|
2740
|
-
"FacetAttributeType":{
|
2741
|
-
"type":"string",
|
2742
|
-
"enum":[
|
2743
|
-
"STRING",
|
2744
|
-
"BINARY",
|
2745
|
-
"BOOLEAN",
|
2746
|
-
"NUMBER",
|
2747
|
-
"DATETIME"
|
2748
|
-
]
|
2749
|
-
},
|
2750
|
-
"FacetAttributeUpdate":{
|
2751
|
-
"type":"structure",
|
2752
|
-
"members":{
|
2753
|
-
"Attribute":{"shape":"FacetAttribute"},
|
2754
|
-
"Action":{"shape":"UpdateActionType"}
|
2755
|
-
}
|
2756
|
-
},
|
2757
|
-
"FacetAttributeUpdateList":{
|
2758
|
-
"type":"list",
|
2759
|
-
"member":{"shape":"FacetAttributeUpdate"}
|
2760
|
-
},
|
2761
|
-
"FacetInUseException":{
|
2762
|
-
"type":"structure",
|
2763
|
-
"members":{
|
2764
|
-
"Message":{"shape":"ExceptionMessage"}
|
2765
|
-
},
|
2766
|
-
"error":{"httpStatusCode":400},
|
2767
|
-
"exception":true
|
2768
|
-
},
|
2769
|
-
"FacetName":{
|
2770
|
-
"type":"string",
|
2771
|
-
"max":64,
|
2772
|
-
"min":1,
|
2773
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
2774
|
-
},
|
2775
|
-
"FacetNameList":{
|
2776
|
-
"type":"list",
|
2777
|
-
"member":{"shape":"FacetName"}
|
2778
|
-
},
|
2779
|
-
"FacetNotFoundException":{
|
2780
|
-
"type":"structure",
|
2781
|
-
"members":{
|
2782
|
-
"Message":{"shape":"ExceptionMessage"}
|
2783
|
-
},
|
2784
|
-
"error":{"httpStatusCode":400},
|
2785
|
-
"exception":true
|
2786
|
-
},
|
2787
|
-
"FacetValidationException":{
|
2788
|
-
"type":"structure",
|
2789
|
-
"members":{
|
2790
|
-
"Message":{"shape":"ExceptionMessage"}
|
2791
|
-
},
|
2792
|
-
"error":{"httpStatusCode":400},
|
2793
|
-
"exception":true
|
2794
|
-
},
|
2795
|
-
"GetAppliedSchemaVersionRequest":{
|
2796
|
-
"type":"structure",
|
2797
|
-
"required":["SchemaArn"],
|
2798
|
-
"members":{
|
2799
|
-
"SchemaArn":{"shape":"Arn"}
|
2800
|
-
}
|
2801
|
-
},
|
2802
|
-
"GetAppliedSchemaVersionResponse":{
|
2803
|
-
"type":"structure",
|
2804
|
-
"members":{
|
2805
|
-
"AppliedSchemaArn":{"shape":"Arn"}
|
2806
|
-
}
|
2807
|
-
},
|
2808
|
-
"GetDirectoryRequest":{
|
2809
|
-
"type":"structure",
|
2810
|
-
"required":["DirectoryArn"],
|
2811
|
-
"members":{
|
2812
|
-
"DirectoryArn":{
|
2813
|
-
"shape":"DirectoryArn",
|
2814
|
-
"location":"header",
|
2815
|
-
"locationName":"x-amz-data-partition"
|
2816
|
-
}
|
2817
|
-
}
|
2818
|
-
},
|
2819
|
-
"GetDirectoryResponse":{
|
2820
|
-
"type":"structure",
|
2821
|
-
"required":["Directory"],
|
2822
|
-
"members":{
|
2823
|
-
"Directory":{"shape":"Directory"}
|
2824
|
-
}
|
2825
|
-
},
|
2826
|
-
"GetFacetRequest":{
|
2827
|
-
"type":"structure",
|
2828
|
-
"required":[
|
2829
|
-
"SchemaArn",
|
2830
|
-
"Name"
|
2831
|
-
],
|
2832
|
-
"members":{
|
2833
|
-
"SchemaArn":{
|
2834
|
-
"shape":"Arn",
|
2835
|
-
"location":"header",
|
2836
|
-
"locationName":"x-amz-data-partition"
|
2837
|
-
},
|
2838
|
-
"Name":{"shape":"FacetName"}
|
2839
|
-
}
|
2840
|
-
},
|
2841
|
-
"GetFacetResponse":{
|
2842
|
-
"type":"structure",
|
2843
|
-
"members":{
|
2844
|
-
"Facet":{"shape":"Facet"}
|
2845
|
-
}
|
2846
|
-
},
|
2847
|
-
"GetLinkAttributesRequest":{
|
2848
|
-
"type":"structure",
|
2849
|
-
"required":[
|
2850
|
-
"DirectoryArn",
|
2851
|
-
"TypedLinkSpecifier",
|
2852
|
-
"AttributeNames"
|
2853
|
-
],
|
2854
|
-
"members":{
|
2855
|
-
"DirectoryArn":{
|
2856
|
-
"shape":"Arn",
|
2857
|
-
"location":"header",
|
2858
|
-
"locationName":"x-amz-data-partition"
|
2859
|
-
},
|
2860
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
|
2861
|
-
"AttributeNames":{"shape":"AttributeNameList"},
|
2862
|
-
"ConsistencyLevel":{"shape":"ConsistencyLevel"}
|
2863
|
-
}
|
2864
|
-
},
|
2865
|
-
"GetLinkAttributesResponse":{
|
2866
|
-
"type":"structure",
|
2867
|
-
"members":{
|
2868
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"}
|
2869
|
-
}
|
2870
|
-
},
|
2871
|
-
"GetObjectAttributesRequest":{
|
2872
|
-
"type":"structure",
|
2873
|
-
"required":[
|
2874
|
-
"DirectoryArn",
|
2875
|
-
"ObjectReference",
|
2876
|
-
"SchemaFacet",
|
2877
|
-
"AttributeNames"
|
2878
|
-
],
|
2879
|
-
"members":{
|
2880
|
-
"DirectoryArn":{
|
2881
|
-
"shape":"Arn",
|
2882
|
-
"location":"header",
|
2883
|
-
"locationName":"x-amz-data-partition"
|
2884
|
-
},
|
2885
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
2886
|
-
"ConsistencyLevel":{
|
2887
|
-
"shape":"ConsistencyLevel",
|
2888
|
-
"location":"header",
|
2889
|
-
"locationName":"x-amz-consistency-level"
|
2890
|
-
},
|
2891
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
2892
|
-
"AttributeNames":{"shape":"AttributeNameList"}
|
2893
|
-
}
|
2894
|
-
},
|
2895
|
-
"GetObjectAttributesResponse":{
|
2896
|
-
"type":"structure",
|
2897
|
-
"members":{
|
2898
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"}
|
2899
|
-
}
|
2900
|
-
},
|
2901
|
-
"GetObjectInformationRequest":{
|
2902
|
-
"type":"structure",
|
2903
|
-
"required":[
|
2904
|
-
"DirectoryArn",
|
2905
|
-
"ObjectReference"
|
2906
|
-
],
|
2907
|
-
"members":{
|
2908
|
-
"DirectoryArn":{
|
2909
|
-
"shape":"Arn",
|
2910
|
-
"location":"header",
|
2911
|
-
"locationName":"x-amz-data-partition"
|
2912
|
-
},
|
2913
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
2914
|
-
"ConsistencyLevel":{
|
2915
|
-
"shape":"ConsistencyLevel",
|
2916
|
-
"location":"header",
|
2917
|
-
"locationName":"x-amz-consistency-level"
|
2918
|
-
}
|
2919
|
-
}
|
2920
|
-
},
|
2921
|
-
"GetObjectInformationResponse":{
|
2922
|
-
"type":"structure",
|
2923
|
-
"members":{
|
2924
|
-
"SchemaFacets":{"shape":"SchemaFacetList"},
|
2925
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2926
|
-
}
|
2927
|
-
},
|
2928
|
-
"GetSchemaAsJsonRequest":{
|
2929
|
-
"type":"structure",
|
2930
|
-
"required":["SchemaArn"],
|
2931
|
-
"members":{
|
2932
|
-
"SchemaArn":{
|
2933
|
-
"shape":"Arn",
|
2934
|
-
"location":"header",
|
2935
|
-
"locationName":"x-amz-data-partition"
|
2936
|
-
}
|
2937
|
-
}
|
2938
|
-
},
|
2939
|
-
"GetSchemaAsJsonResponse":{
|
2940
|
-
"type":"structure",
|
2941
|
-
"members":{
|
2942
|
-
"Name":{"shape":"SchemaName"},
|
2943
|
-
"Document":{"shape":"SchemaJsonDocument"}
|
2944
|
-
}
|
2945
|
-
},
|
2946
|
-
"GetTypedLinkFacetInformationRequest":{
|
2947
|
-
"type":"structure",
|
2948
|
-
"required":[
|
2949
|
-
"SchemaArn",
|
2950
|
-
"Name"
|
2951
|
-
],
|
2952
|
-
"members":{
|
2953
|
-
"SchemaArn":{
|
2954
|
-
"shape":"Arn",
|
2955
|
-
"location":"header",
|
2956
|
-
"locationName":"x-amz-data-partition"
|
2957
|
-
},
|
2958
|
-
"Name":{"shape":"TypedLinkName"}
|
2959
|
-
}
|
2960
|
-
},
|
2961
|
-
"GetTypedLinkFacetInformationResponse":{
|
2962
|
-
"type":"structure",
|
2963
|
-
"members":{
|
2964
|
-
"IdentityAttributeOrder":{"shape":"AttributeNameList"}
|
2965
|
-
}
|
2966
|
-
},
|
2967
|
-
"IncompatibleSchemaException":{
|
2968
|
-
"type":"structure",
|
2969
|
-
"members":{
|
2970
|
-
"Message":{"shape":"ExceptionMessage"}
|
2971
|
-
},
|
2972
|
-
"error":{"httpStatusCode":400},
|
2973
|
-
"exception":true
|
2974
|
-
},
|
2975
|
-
"IndexAttachment":{
|
2976
|
-
"type":"structure",
|
2977
|
-
"members":{
|
2978
|
-
"IndexedAttributes":{"shape":"AttributeKeyAndValueList"},
|
2979
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
2980
|
-
}
|
2981
|
-
},
|
2982
|
-
"IndexAttachmentList":{
|
2983
|
-
"type":"list",
|
2984
|
-
"member":{"shape":"IndexAttachment"}
|
2985
|
-
},
|
2986
|
-
"IndexedAttributeMissingException":{
|
2987
|
-
"type":"structure",
|
2988
|
-
"members":{
|
2989
|
-
"Message":{"shape":"ExceptionMessage"}
|
2990
|
-
},
|
2991
|
-
"error":{"httpStatusCode":400},
|
2992
|
-
"exception":true
|
2993
|
-
},
|
2994
|
-
"InternalServiceException":{
|
2995
|
-
"type":"structure",
|
2996
|
-
"members":{
|
2997
|
-
"Message":{"shape":"ExceptionMessage"}
|
2998
|
-
},
|
2999
|
-
"error":{"httpStatusCode":500},
|
3000
|
-
"exception":true
|
3001
|
-
},
|
3002
|
-
"InvalidArnException":{
|
3003
|
-
"type":"structure",
|
3004
|
-
"members":{
|
3005
|
-
"Message":{"shape":"ExceptionMessage"}
|
3006
|
-
},
|
3007
|
-
"error":{"httpStatusCode":400},
|
3008
|
-
"exception":true
|
3009
|
-
},
|
3010
|
-
"InvalidAttachmentException":{
|
3011
|
-
"type":"structure",
|
3012
|
-
"members":{
|
3013
|
-
"Message":{"shape":"ExceptionMessage"}
|
3014
|
-
},
|
3015
|
-
"error":{"httpStatusCode":400},
|
3016
|
-
"exception":true
|
3017
|
-
},
|
3018
|
-
"InvalidFacetUpdateException":{
|
3019
|
-
"type":"structure",
|
3020
|
-
"members":{
|
3021
|
-
"Message":{"shape":"ExceptionMessage"}
|
3022
|
-
},
|
3023
|
-
"error":{"httpStatusCode":400},
|
3024
|
-
"exception":true
|
3025
|
-
},
|
3026
|
-
"InvalidNextTokenException":{
|
3027
|
-
"type":"structure",
|
3028
|
-
"members":{
|
3029
|
-
"Message":{"shape":"ExceptionMessage"}
|
3030
|
-
},
|
3031
|
-
"error":{"httpStatusCode":400},
|
3032
|
-
"exception":true
|
3033
|
-
},
|
3034
|
-
"InvalidRuleException":{
|
3035
|
-
"type":"structure",
|
3036
|
-
"members":{
|
3037
|
-
"Message":{"shape":"ExceptionMessage"}
|
3038
|
-
},
|
3039
|
-
"error":{"httpStatusCode":400},
|
3040
|
-
"exception":true
|
3041
|
-
},
|
3042
|
-
"InvalidSchemaDocException":{
|
3043
|
-
"type":"structure",
|
3044
|
-
"members":{
|
3045
|
-
"Message":{"shape":"ExceptionMessage"}
|
3046
|
-
},
|
3047
|
-
"error":{"httpStatusCode":400},
|
3048
|
-
"exception":true
|
3049
|
-
},
|
3050
|
-
"InvalidTaggingRequestException":{
|
3051
|
-
"type":"structure",
|
3052
|
-
"members":{
|
3053
|
-
"Message":{"shape":"ExceptionMessage"}
|
3054
|
-
},
|
3055
|
-
"error":{"httpStatusCode":400},
|
3056
|
-
"exception":true
|
3057
|
-
},
|
3058
|
-
"LimitExceededException":{
|
3059
|
-
"type":"structure",
|
3060
|
-
"members":{
|
3061
|
-
"Message":{"shape":"ExceptionMessage"}
|
3062
|
-
},
|
3063
|
-
"error":{"httpStatusCode":400},
|
3064
|
-
"exception":true
|
3065
|
-
},
|
3066
|
-
"LinkAttributeAction":{
|
3067
|
-
"type":"structure",
|
3068
|
-
"members":{
|
3069
|
-
"AttributeActionType":{"shape":"UpdateActionType"},
|
3070
|
-
"AttributeUpdateValue":{"shape":"TypedAttributeValue"}
|
3071
|
-
}
|
3072
|
-
},
|
3073
|
-
"LinkAttributeUpdate":{
|
3074
|
-
"type":"structure",
|
3075
|
-
"members":{
|
3076
|
-
"AttributeKey":{"shape":"AttributeKey"},
|
3077
|
-
"AttributeAction":{"shape":"LinkAttributeAction"}
|
3078
|
-
}
|
3079
|
-
},
|
3080
|
-
"LinkAttributeUpdateList":{
|
3081
|
-
"type":"list",
|
3082
|
-
"member":{"shape":"LinkAttributeUpdate"}
|
3083
|
-
},
|
3084
|
-
"LinkName":{
|
3085
|
-
"type":"string",
|
3086
|
-
"max":64,
|
3087
|
-
"min":1,
|
3088
|
-
"pattern":"[^\\/\\[\\]\\(\\):\\{\\}#@!?\\s\\\\;]+"
|
3089
|
-
},
|
3090
|
-
"LinkNameAlreadyInUseException":{
|
3091
|
-
"type":"structure",
|
3092
|
-
"members":{
|
3093
|
-
"Message":{"shape":"ExceptionMessage"}
|
3094
|
-
},
|
3095
|
-
"error":{"httpStatusCode":400},
|
3096
|
-
"exception":true
|
3097
|
-
},
|
3098
|
-
"LinkNameToObjectIdentifierMap":{
|
3099
|
-
"type":"map",
|
3100
|
-
"key":{"shape":"LinkName"},
|
3101
|
-
"value":{"shape":"ObjectIdentifier"}
|
3102
|
-
},
|
3103
|
-
"ListAppliedSchemaArnsRequest":{
|
3104
|
-
"type":"structure",
|
3105
|
-
"required":["DirectoryArn"],
|
3106
|
-
"members":{
|
3107
|
-
"DirectoryArn":{"shape":"Arn"},
|
3108
|
-
"SchemaArn":{"shape":"Arn"},
|
3109
|
-
"NextToken":{"shape":"NextToken"},
|
3110
|
-
"MaxResults":{"shape":"NumberResults"}
|
3111
|
-
}
|
3112
|
-
},
|
3113
|
-
"ListAppliedSchemaArnsResponse":{
|
3114
|
-
"type":"structure",
|
3115
|
-
"members":{
|
3116
|
-
"SchemaArns":{"shape":"Arns"},
|
3117
|
-
"NextToken":{"shape":"NextToken"}
|
3118
|
-
}
|
3119
|
-
},
|
3120
|
-
"ListAttachedIndicesRequest":{
|
3121
|
-
"type":"structure",
|
3122
|
-
"required":[
|
3123
|
-
"DirectoryArn",
|
3124
|
-
"TargetReference"
|
3125
|
-
],
|
3126
|
-
"members":{
|
3127
|
-
"DirectoryArn":{
|
3128
|
-
"shape":"Arn",
|
3129
|
-
"location":"header",
|
3130
|
-
"locationName":"x-amz-data-partition"
|
3131
|
-
},
|
3132
|
-
"TargetReference":{"shape":"ObjectReference"},
|
3133
|
-
"NextToken":{"shape":"NextToken"},
|
3134
|
-
"MaxResults":{"shape":"NumberResults"},
|
3135
|
-
"ConsistencyLevel":{
|
3136
|
-
"shape":"ConsistencyLevel",
|
3137
|
-
"location":"header",
|
3138
|
-
"locationName":"x-amz-consistency-level"
|
3139
|
-
}
|
3140
|
-
}
|
3141
|
-
},
|
3142
|
-
"ListAttachedIndicesResponse":{
|
3143
|
-
"type":"structure",
|
3144
|
-
"members":{
|
3145
|
-
"IndexAttachments":{"shape":"IndexAttachmentList"},
|
3146
|
-
"NextToken":{"shape":"NextToken"}
|
3147
|
-
}
|
3148
|
-
},
|
3149
|
-
"ListDevelopmentSchemaArnsRequest":{
|
3150
|
-
"type":"structure",
|
3151
|
-
"members":{
|
3152
|
-
"NextToken":{"shape":"NextToken"},
|
3153
|
-
"MaxResults":{"shape":"NumberResults"}
|
3154
|
-
}
|
3155
|
-
},
|
3156
|
-
"ListDevelopmentSchemaArnsResponse":{
|
3157
|
-
"type":"structure",
|
3158
|
-
"members":{
|
3159
|
-
"SchemaArns":{"shape":"Arns"},
|
3160
|
-
"NextToken":{"shape":"NextToken"}
|
3161
|
-
}
|
3162
|
-
},
|
3163
|
-
"ListDirectoriesRequest":{
|
3164
|
-
"type":"structure",
|
3165
|
-
"members":{
|
3166
|
-
"NextToken":{"shape":"NextToken"},
|
3167
|
-
"MaxResults":{"shape":"NumberResults"},
|
3168
|
-
"state":{"shape":"DirectoryState"}
|
3169
|
-
}
|
3170
|
-
},
|
3171
|
-
"ListDirectoriesResponse":{
|
3172
|
-
"type":"structure",
|
3173
|
-
"required":["Directories"],
|
3174
|
-
"members":{
|
3175
|
-
"Directories":{"shape":"DirectoryList"},
|
3176
|
-
"NextToken":{"shape":"NextToken"}
|
3177
|
-
}
|
3178
|
-
},
|
3179
|
-
"ListFacetAttributesRequest":{
|
3180
|
-
"type":"structure",
|
3181
|
-
"required":[
|
3182
|
-
"SchemaArn",
|
3183
|
-
"Name"
|
3184
|
-
],
|
3185
|
-
"members":{
|
3186
|
-
"SchemaArn":{
|
3187
|
-
"shape":"Arn",
|
3188
|
-
"location":"header",
|
3189
|
-
"locationName":"x-amz-data-partition"
|
3190
|
-
},
|
3191
|
-
"Name":{"shape":"FacetName"},
|
3192
|
-
"NextToken":{"shape":"NextToken"},
|
3193
|
-
"MaxResults":{"shape":"NumberResults"}
|
3194
|
-
}
|
3195
|
-
},
|
3196
|
-
"ListFacetAttributesResponse":{
|
3197
|
-
"type":"structure",
|
3198
|
-
"members":{
|
3199
|
-
"Attributes":{"shape":"FacetAttributeList"},
|
3200
|
-
"NextToken":{"shape":"NextToken"}
|
3201
|
-
}
|
3202
|
-
},
|
3203
|
-
"ListFacetNamesRequest":{
|
3204
|
-
"type":"structure",
|
3205
|
-
"required":["SchemaArn"],
|
3206
|
-
"members":{
|
3207
|
-
"SchemaArn":{
|
3208
|
-
"shape":"Arn",
|
3209
|
-
"location":"header",
|
3210
|
-
"locationName":"x-amz-data-partition"
|
3211
|
-
},
|
3212
|
-
"NextToken":{"shape":"NextToken"},
|
3213
|
-
"MaxResults":{"shape":"NumberResults"}
|
3214
|
-
}
|
3215
|
-
},
|
3216
|
-
"ListFacetNamesResponse":{
|
3217
|
-
"type":"structure",
|
3218
|
-
"members":{
|
3219
|
-
"FacetNames":{"shape":"FacetNameList"},
|
3220
|
-
"NextToken":{"shape":"NextToken"}
|
3221
|
-
}
|
3222
|
-
},
|
3223
|
-
"ListIncomingTypedLinksRequest":{
|
3224
|
-
"type":"structure",
|
3225
|
-
"required":[
|
3226
|
-
"DirectoryArn",
|
3227
|
-
"ObjectReference"
|
3228
|
-
],
|
3229
|
-
"members":{
|
3230
|
-
"DirectoryArn":{
|
3231
|
-
"shape":"Arn",
|
3232
|
-
"location":"header",
|
3233
|
-
"locationName":"x-amz-data-partition"
|
3234
|
-
},
|
3235
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3236
|
-
"FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
|
3237
|
-
"FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
|
3238
|
-
"NextToken":{"shape":"NextToken"},
|
3239
|
-
"MaxResults":{"shape":"NumberResults"},
|
3240
|
-
"ConsistencyLevel":{"shape":"ConsistencyLevel"}
|
3241
|
-
}
|
3242
|
-
},
|
3243
|
-
"ListIncomingTypedLinksResponse":{
|
3244
|
-
"type":"structure",
|
3245
|
-
"members":{
|
3246
|
-
"LinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
|
3247
|
-
"NextToken":{"shape":"NextToken"}
|
3248
|
-
}
|
3249
|
-
},
|
3250
|
-
"ListIndexRequest":{
|
3251
|
-
"type":"structure",
|
3252
|
-
"required":[
|
3253
|
-
"DirectoryArn",
|
3254
|
-
"IndexReference"
|
3255
|
-
],
|
3256
|
-
"members":{
|
3257
|
-
"DirectoryArn":{
|
3258
|
-
"shape":"Arn",
|
3259
|
-
"location":"header",
|
3260
|
-
"locationName":"x-amz-data-partition"
|
3261
|
-
},
|
3262
|
-
"RangesOnIndexedValues":{"shape":"ObjectAttributeRangeList"},
|
3263
|
-
"IndexReference":{"shape":"ObjectReference"},
|
3264
|
-
"MaxResults":{"shape":"NumberResults"},
|
3265
|
-
"NextToken":{"shape":"NextToken"},
|
3266
|
-
"ConsistencyLevel":{
|
3267
|
-
"shape":"ConsistencyLevel",
|
3268
|
-
"location":"header",
|
3269
|
-
"locationName":"x-amz-consistency-level"
|
3270
|
-
}
|
3271
|
-
}
|
3272
|
-
},
|
3273
|
-
"ListIndexResponse":{
|
3274
|
-
"type":"structure",
|
3275
|
-
"members":{
|
3276
|
-
"IndexAttachments":{"shape":"IndexAttachmentList"},
|
3277
|
-
"NextToken":{"shape":"NextToken"}
|
3278
|
-
}
|
3279
|
-
},
|
3280
|
-
"ListObjectAttributesRequest":{
|
3281
|
-
"type":"structure",
|
3282
|
-
"required":[
|
3283
|
-
"DirectoryArn",
|
3284
|
-
"ObjectReference"
|
3285
|
-
],
|
3286
|
-
"members":{
|
3287
|
-
"DirectoryArn":{
|
3288
|
-
"shape":"Arn",
|
3289
|
-
"location":"header",
|
3290
|
-
"locationName":"x-amz-data-partition"
|
3291
|
-
},
|
3292
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3293
|
-
"NextToken":{"shape":"NextToken"},
|
3294
|
-
"MaxResults":{"shape":"NumberResults"},
|
3295
|
-
"ConsistencyLevel":{
|
3296
|
-
"shape":"ConsistencyLevel",
|
3297
|
-
"location":"header",
|
3298
|
-
"locationName":"x-amz-consistency-level"
|
3299
|
-
},
|
3300
|
-
"FacetFilter":{"shape":"SchemaFacet"}
|
3301
|
-
}
|
3302
|
-
},
|
3303
|
-
"ListObjectAttributesResponse":{
|
3304
|
-
"type":"structure",
|
3305
|
-
"members":{
|
3306
|
-
"Attributes":{"shape":"AttributeKeyAndValueList"},
|
3307
|
-
"NextToken":{"shape":"NextToken"}
|
3308
|
-
}
|
3309
|
-
},
|
3310
|
-
"ListObjectChildrenRequest":{
|
3311
|
-
"type":"structure",
|
3312
|
-
"required":[
|
3313
|
-
"DirectoryArn",
|
3314
|
-
"ObjectReference"
|
3315
|
-
],
|
3316
|
-
"members":{
|
3317
|
-
"DirectoryArn":{
|
3318
|
-
"shape":"Arn",
|
3319
|
-
"location":"header",
|
3320
|
-
"locationName":"x-amz-data-partition"
|
3321
|
-
},
|
3322
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3323
|
-
"NextToken":{"shape":"NextToken"},
|
3324
|
-
"MaxResults":{"shape":"NumberResults"},
|
3325
|
-
"ConsistencyLevel":{
|
3326
|
-
"shape":"ConsistencyLevel",
|
3327
|
-
"location":"header",
|
3328
|
-
"locationName":"x-amz-consistency-level"
|
3329
|
-
}
|
3330
|
-
}
|
3331
|
-
},
|
3332
|
-
"ListObjectChildrenResponse":{
|
3333
|
-
"type":"structure",
|
3334
|
-
"members":{
|
3335
|
-
"Children":{"shape":"LinkNameToObjectIdentifierMap"},
|
3336
|
-
"NextToken":{"shape":"NextToken"}
|
3337
|
-
}
|
3338
|
-
},
|
3339
|
-
"ListObjectParentPathsRequest":{
|
3340
|
-
"type":"structure",
|
3341
|
-
"required":[
|
3342
|
-
"DirectoryArn",
|
3343
|
-
"ObjectReference"
|
3344
|
-
],
|
3345
|
-
"members":{
|
3346
|
-
"DirectoryArn":{
|
3347
|
-
"shape":"Arn",
|
3348
|
-
"location":"header",
|
3349
|
-
"locationName":"x-amz-data-partition"
|
3350
|
-
},
|
3351
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3352
|
-
"NextToken":{"shape":"NextToken"},
|
3353
|
-
"MaxResults":{"shape":"NumberResults"}
|
3354
|
-
}
|
3355
|
-
},
|
3356
|
-
"ListObjectParentPathsResponse":{
|
3357
|
-
"type":"structure",
|
3358
|
-
"members":{
|
3359
|
-
"PathToObjectIdentifiersList":{"shape":"PathToObjectIdentifiersList"},
|
3360
|
-
"NextToken":{"shape":"NextToken"}
|
3361
|
-
}
|
3362
|
-
},
|
3363
|
-
"ListObjectParentsRequest":{
|
3364
|
-
"type":"structure",
|
3365
|
-
"required":[
|
3366
|
-
"DirectoryArn",
|
3367
|
-
"ObjectReference"
|
3368
|
-
],
|
3369
|
-
"members":{
|
3370
|
-
"DirectoryArn":{
|
3371
|
-
"shape":"Arn",
|
3372
|
-
"location":"header",
|
3373
|
-
"locationName":"x-amz-data-partition"
|
3374
|
-
},
|
3375
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3376
|
-
"NextToken":{"shape":"NextToken"},
|
3377
|
-
"MaxResults":{"shape":"NumberResults"},
|
3378
|
-
"ConsistencyLevel":{
|
3379
|
-
"shape":"ConsistencyLevel",
|
3380
|
-
"location":"header",
|
3381
|
-
"locationName":"x-amz-consistency-level"
|
3382
|
-
}
|
3383
|
-
}
|
3384
|
-
},
|
3385
|
-
"ListObjectParentsResponse":{
|
3386
|
-
"type":"structure",
|
3387
|
-
"members":{
|
3388
|
-
"Parents":{"shape":"ObjectIdentifierToLinkNameMap"},
|
3389
|
-
"NextToken":{"shape":"NextToken"}
|
3390
|
-
}
|
3391
|
-
},
|
3392
|
-
"ListObjectPoliciesRequest":{
|
3393
|
-
"type":"structure",
|
3394
|
-
"required":[
|
3395
|
-
"DirectoryArn",
|
3396
|
-
"ObjectReference"
|
3397
|
-
],
|
3398
|
-
"members":{
|
3399
|
-
"DirectoryArn":{
|
3400
|
-
"shape":"Arn",
|
3401
|
-
"location":"header",
|
3402
|
-
"locationName":"x-amz-data-partition"
|
3403
|
-
},
|
3404
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3405
|
-
"NextToken":{"shape":"NextToken"},
|
3406
|
-
"MaxResults":{"shape":"NumberResults"},
|
3407
|
-
"ConsistencyLevel":{
|
3408
|
-
"shape":"ConsistencyLevel",
|
3409
|
-
"location":"header",
|
3410
|
-
"locationName":"x-amz-consistency-level"
|
3411
|
-
}
|
3412
|
-
}
|
3413
|
-
},
|
3414
|
-
"ListObjectPoliciesResponse":{
|
3415
|
-
"type":"structure",
|
3416
|
-
"members":{
|
3417
|
-
"AttachedPolicyIds":{"shape":"ObjectIdentifierList"},
|
3418
|
-
"NextToken":{"shape":"NextToken"}
|
3419
|
-
}
|
3420
|
-
},
|
3421
|
-
"ListOutgoingTypedLinksRequest":{
|
3422
|
-
"type":"structure",
|
3423
|
-
"required":[
|
3424
|
-
"DirectoryArn",
|
3425
|
-
"ObjectReference"
|
3426
|
-
],
|
3427
|
-
"members":{
|
3428
|
-
"DirectoryArn":{
|
3429
|
-
"shape":"Arn",
|
3430
|
-
"location":"header",
|
3431
|
-
"locationName":"x-amz-data-partition"
|
3432
|
-
},
|
3433
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3434
|
-
"FilterAttributeRanges":{"shape":"TypedLinkAttributeRangeList"},
|
3435
|
-
"FilterTypedLink":{"shape":"TypedLinkSchemaAndFacetName"},
|
3436
|
-
"NextToken":{"shape":"NextToken"},
|
3437
|
-
"MaxResults":{"shape":"NumberResults"},
|
3438
|
-
"ConsistencyLevel":{"shape":"ConsistencyLevel"}
|
3439
|
-
}
|
3440
|
-
},
|
3441
|
-
"ListOutgoingTypedLinksResponse":{
|
3442
|
-
"type":"structure",
|
3443
|
-
"members":{
|
3444
|
-
"TypedLinkSpecifiers":{"shape":"TypedLinkSpecifierList"},
|
3445
|
-
"NextToken":{"shape":"NextToken"}
|
3446
|
-
}
|
3447
|
-
},
|
3448
|
-
"ListPolicyAttachmentsRequest":{
|
3449
|
-
"type":"structure",
|
3450
|
-
"required":[
|
3451
|
-
"DirectoryArn",
|
3452
|
-
"PolicyReference"
|
3453
|
-
],
|
3454
|
-
"members":{
|
3455
|
-
"DirectoryArn":{
|
3456
|
-
"shape":"Arn",
|
3457
|
-
"location":"header",
|
3458
|
-
"locationName":"x-amz-data-partition"
|
3459
|
-
},
|
3460
|
-
"PolicyReference":{"shape":"ObjectReference"},
|
3461
|
-
"NextToken":{"shape":"NextToken"},
|
3462
|
-
"MaxResults":{"shape":"NumberResults"},
|
3463
|
-
"ConsistencyLevel":{
|
3464
|
-
"shape":"ConsistencyLevel",
|
3465
|
-
"location":"header",
|
3466
|
-
"locationName":"x-amz-consistency-level"
|
3467
|
-
}
|
3468
|
-
}
|
3469
|
-
},
|
3470
|
-
"ListPolicyAttachmentsResponse":{
|
3471
|
-
"type":"structure",
|
3472
|
-
"members":{
|
3473
|
-
"ObjectIdentifiers":{"shape":"ObjectIdentifierList"},
|
3474
|
-
"NextToken":{"shape":"NextToken"}
|
3475
|
-
}
|
3476
|
-
},
|
3477
|
-
"ListPublishedSchemaArnsRequest":{
|
3478
|
-
"type":"structure",
|
3479
|
-
"members":{
|
3480
|
-
"SchemaArn":{"shape":"Arn"},
|
3481
|
-
"NextToken":{"shape":"NextToken"},
|
3482
|
-
"MaxResults":{"shape":"NumberResults"}
|
3483
|
-
}
|
3484
|
-
},
|
3485
|
-
"ListPublishedSchemaArnsResponse":{
|
3486
|
-
"type":"structure",
|
3487
|
-
"members":{
|
3488
|
-
"SchemaArns":{"shape":"Arns"},
|
3489
|
-
"NextToken":{"shape":"NextToken"}
|
3490
|
-
}
|
3491
|
-
},
|
3492
|
-
"ListTagsForResourceRequest":{
|
3493
|
-
"type":"structure",
|
3494
|
-
"required":["ResourceArn"],
|
3495
|
-
"members":{
|
3496
|
-
"ResourceArn":{"shape":"Arn"},
|
3497
|
-
"NextToken":{"shape":"NextToken"},
|
3498
|
-
"MaxResults":{"shape":"TagsNumberResults"}
|
3499
|
-
}
|
3500
|
-
},
|
3501
|
-
"ListTagsForResourceResponse":{
|
3502
|
-
"type":"structure",
|
3503
|
-
"members":{
|
3504
|
-
"Tags":{"shape":"TagList"},
|
3505
|
-
"NextToken":{"shape":"NextToken"}
|
3506
|
-
}
|
3507
|
-
},
|
3508
|
-
"ListTypedLinkFacetAttributesRequest":{
|
3509
|
-
"type":"structure",
|
3510
|
-
"required":[
|
3511
|
-
"SchemaArn",
|
3512
|
-
"Name"
|
3513
|
-
],
|
3514
|
-
"members":{
|
3515
|
-
"SchemaArn":{
|
3516
|
-
"shape":"Arn",
|
3517
|
-
"location":"header",
|
3518
|
-
"locationName":"x-amz-data-partition"
|
3519
|
-
},
|
3520
|
-
"Name":{"shape":"TypedLinkName"},
|
3521
|
-
"NextToken":{"shape":"NextToken"},
|
3522
|
-
"MaxResults":{"shape":"NumberResults"}
|
3523
|
-
}
|
3524
|
-
},
|
3525
|
-
"ListTypedLinkFacetAttributesResponse":{
|
3526
|
-
"type":"structure",
|
3527
|
-
"members":{
|
3528
|
-
"Attributes":{"shape":"TypedLinkAttributeDefinitionList"},
|
3529
|
-
"NextToken":{"shape":"NextToken"}
|
3530
|
-
}
|
3531
|
-
},
|
3532
|
-
"ListTypedLinkFacetNamesRequest":{
|
3533
|
-
"type":"structure",
|
3534
|
-
"required":["SchemaArn"],
|
3535
|
-
"members":{
|
3536
|
-
"SchemaArn":{
|
3537
|
-
"shape":"Arn",
|
3538
|
-
"location":"header",
|
3539
|
-
"locationName":"x-amz-data-partition"
|
3540
|
-
},
|
3541
|
-
"NextToken":{"shape":"NextToken"},
|
3542
|
-
"MaxResults":{"shape":"NumberResults"}
|
3543
|
-
}
|
3544
|
-
},
|
3545
|
-
"ListTypedLinkFacetNamesResponse":{
|
3546
|
-
"type":"structure",
|
3547
|
-
"members":{
|
3548
|
-
"FacetNames":{"shape":"TypedLinkNameList"},
|
3549
|
-
"NextToken":{"shape":"NextToken"}
|
3550
|
-
}
|
3551
|
-
},
|
3552
|
-
"LookupPolicyRequest":{
|
3553
|
-
"type":"structure",
|
3554
|
-
"required":[
|
3555
|
-
"DirectoryArn",
|
3556
|
-
"ObjectReference"
|
3557
|
-
],
|
3558
|
-
"members":{
|
3559
|
-
"DirectoryArn":{
|
3560
|
-
"shape":"Arn",
|
3561
|
-
"location":"header",
|
3562
|
-
"locationName":"x-amz-data-partition"
|
3563
|
-
},
|
3564
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
3565
|
-
"NextToken":{"shape":"NextToken"},
|
3566
|
-
"MaxResults":{"shape":"NumberResults"}
|
3567
|
-
}
|
3568
|
-
},
|
3569
|
-
"LookupPolicyResponse":{
|
3570
|
-
"type":"structure",
|
3571
|
-
"members":{
|
3572
|
-
"PolicyToPathList":{"shape":"PolicyToPathList"},
|
3573
|
-
"NextToken":{"shape":"NextToken"}
|
3574
|
-
}
|
3575
|
-
},
|
3576
|
-
"NextToken":{"type":"string"},
|
3577
|
-
"NotIndexException":{
|
3578
|
-
"type":"structure",
|
3579
|
-
"members":{
|
3580
|
-
"Message":{"shape":"ExceptionMessage"}
|
3581
|
-
},
|
3582
|
-
"error":{"httpStatusCode":400},
|
3583
|
-
"exception":true
|
3584
|
-
},
|
3585
|
-
"NotNodeException":{
|
3586
|
-
"type":"structure",
|
3587
|
-
"members":{
|
3588
|
-
"Message":{"shape":"ExceptionMessage"}
|
3589
|
-
},
|
3590
|
-
"error":{"httpStatusCode":400},
|
3591
|
-
"exception":true
|
3592
|
-
},
|
3593
|
-
"NotPolicyException":{
|
3594
|
-
"type":"structure",
|
3595
|
-
"members":{
|
3596
|
-
"Message":{"shape":"ExceptionMessage"}
|
3597
|
-
},
|
3598
|
-
"error":{"httpStatusCode":400},
|
3599
|
-
"exception":true
|
3600
|
-
},
|
3601
|
-
"NumberAttributeValue":{"type":"string"},
|
3602
|
-
"NumberResults":{
|
3603
|
-
"type":"integer",
|
3604
|
-
"min":1
|
3605
|
-
},
|
3606
|
-
"ObjectAlreadyDetachedException":{
|
3607
|
-
"type":"structure",
|
3608
|
-
"members":{
|
3609
|
-
"Message":{"shape":"ExceptionMessage"}
|
3610
|
-
},
|
3611
|
-
"error":{"httpStatusCode":400},
|
3612
|
-
"exception":true
|
3613
|
-
},
|
3614
|
-
"ObjectAttributeAction":{
|
3615
|
-
"type":"structure",
|
3616
|
-
"members":{
|
3617
|
-
"ObjectAttributeActionType":{"shape":"UpdateActionType"},
|
3618
|
-
"ObjectAttributeUpdateValue":{"shape":"TypedAttributeValue"}
|
3619
|
-
}
|
3620
|
-
},
|
3621
|
-
"ObjectAttributeRange":{
|
3622
|
-
"type":"structure",
|
3623
|
-
"members":{
|
3624
|
-
"AttributeKey":{"shape":"AttributeKey"},
|
3625
|
-
"Range":{"shape":"TypedAttributeValueRange"}
|
3626
|
-
}
|
3627
|
-
},
|
3628
|
-
"ObjectAttributeRangeList":{
|
3629
|
-
"type":"list",
|
3630
|
-
"member":{"shape":"ObjectAttributeRange"}
|
3631
|
-
},
|
3632
|
-
"ObjectAttributeUpdate":{
|
3633
|
-
"type":"structure",
|
3634
|
-
"members":{
|
3635
|
-
"ObjectAttributeKey":{"shape":"AttributeKey"},
|
3636
|
-
"ObjectAttributeAction":{"shape":"ObjectAttributeAction"}
|
3637
|
-
}
|
3638
|
-
},
|
3639
|
-
"ObjectAttributeUpdateList":{
|
3640
|
-
"type":"list",
|
3641
|
-
"member":{"shape":"ObjectAttributeUpdate"}
|
3642
|
-
},
|
3643
|
-
"ObjectIdentifier":{"type":"string"},
|
3644
|
-
"ObjectIdentifierList":{
|
3645
|
-
"type":"list",
|
3646
|
-
"member":{"shape":"ObjectIdentifier"}
|
3647
|
-
},
|
3648
|
-
"ObjectIdentifierToLinkNameMap":{
|
3649
|
-
"type":"map",
|
3650
|
-
"key":{"shape":"ObjectIdentifier"},
|
3651
|
-
"value":{"shape":"LinkName"}
|
3652
|
-
},
|
3653
|
-
"ObjectNotDetachedException":{
|
3654
|
-
"type":"structure",
|
3655
|
-
"members":{
|
3656
|
-
"Message":{"shape":"ExceptionMessage"}
|
3657
|
-
},
|
3658
|
-
"error":{"httpStatusCode":400},
|
3659
|
-
"exception":true
|
3660
|
-
},
|
3661
|
-
"ObjectReference":{
|
3662
|
-
"type":"structure",
|
3663
|
-
"members":{
|
3664
|
-
"Selector":{"shape":"SelectorObjectReference"}
|
3665
|
-
}
|
3666
|
-
},
|
3667
|
-
"ObjectType":{
|
3668
|
-
"type":"string",
|
3669
|
-
"enum":[
|
3670
|
-
"NODE",
|
3671
|
-
"LEAF_NODE",
|
3672
|
-
"POLICY",
|
3673
|
-
"INDEX"
|
3674
|
-
]
|
3675
|
-
},
|
3676
|
-
"PathString":{"type":"string"},
|
3677
|
-
"PathToObjectIdentifiers":{
|
3678
|
-
"type":"structure",
|
3679
|
-
"members":{
|
3680
|
-
"Path":{"shape":"PathString"},
|
3681
|
-
"ObjectIdentifiers":{"shape":"ObjectIdentifierList"}
|
3682
|
-
}
|
3683
|
-
},
|
3684
|
-
"PathToObjectIdentifiersList":{
|
3685
|
-
"type":"list",
|
3686
|
-
"member":{"shape":"PathToObjectIdentifiers"}
|
3687
|
-
},
|
3688
|
-
"PolicyAttachment":{
|
3689
|
-
"type":"structure",
|
3690
|
-
"members":{
|
3691
|
-
"PolicyId":{"shape":"ObjectIdentifier"},
|
3692
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"},
|
3693
|
-
"PolicyType":{"shape":"PolicyType"}
|
3694
|
-
}
|
3695
|
-
},
|
3696
|
-
"PolicyAttachmentList":{
|
3697
|
-
"type":"list",
|
3698
|
-
"member":{"shape":"PolicyAttachment"}
|
3699
|
-
},
|
3700
|
-
"PolicyToPath":{
|
3701
|
-
"type":"structure",
|
3702
|
-
"members":{
|
3703
|
-
"Path":{"shape":"PathString"},
|
3704
|
-
"Policies":{"shape":"PolicyAttachmentList"}
|
3705
|
-
}
|
3706
|
-
},
|
3707
|
-
"PolicyToPathList":{
|
3708
|
-
"type":"list",
|
3709
|
-
"member":{"shape":"PolicyToPath"}
|
3710
|
-
},
|
3711
|
-
"PolicyType":{"type":"string"},
|
3712
|
-
"PublishSchemaRequest":{
|
3713
|
-
"type":"structure",
|
3714
|
-
"required":[
|
3715
|
-
"DevelopmentSchemaArn",
|
3716
|
-
"Version"
|
3717
|
-
],
|
3718
|
-
"members":{
|
3719
|
-
"DevelopmentSchemaArn":{
|
3720
|
-
"shape":"Arn",
|
3721
|
-
"location":"header",
|
3722
|
-
"locationName":"x-amz-data-partition"
|
3723
|
-
},
|
3724
|
-
"Version":{"shape":"Version"},
|
3725
|
-
"MinorVersion":{"shape":"Version"},
|
3726
|
-
"Name":{"shape":"SchemaName"}
|
3727
|
-
}
|
3728
|
-
},
|
3729
|
-
"PublishSchemaResponse":{
|
3730
|
-
"type":"structure",
|
3731
|
-
"members":{
|
3732
|
-
"PublishedSchemaArn":{"shape":"Arn"}
|
3733
|
-
}
|
3734
|
-
},
|
3735
|
-
"PutSchemaFromJsonRequest":{
|
3736
|
-
"type":"structure",
|
3737
|
-
"required":[
|
3738
|
-
"SchemaArn",
|
3739
|
-
"Document"
|
3740
|
-
],
|
3741
|
-
"members":{
|
3742
|
-
"SchemaArn":{
|
3743
|
-
"shape":"Arn",
|
3744
|
-
"location":"header",
|
3745
|
-
"locationName":"x-amz-data-partition"
|
3746
|
-
},
|
3747
|
-
"Document":{"shape":"SchemaJsonDocument"}
|
3748
|
-
}
|
3749
|
-
},
|
3750
|
-
"PutSchemaFromJsonResponse":{
|
3751
|
-
"type":"structure",
|
3752
|
-
"members":{
|
3753
|
-
"Arn":{"shape":"Arn"}
|
3754
|
-
}
|
3755
|
-
},
|
3756
|
-
"RangeMode":{
|
3757
|
-
"type":"string",
|
3758
|
-
"enum":[
|
3759
|
-
"FIRST",
|
3760
|
-
"LAST",
|
3761
|
-
"LAST_BEFORE_MISSING_VALUES",
|
3762
|
-
"INCLUSIVE",
|
3763
|
-
"EXCLUSIVE"
|
3764
|
-
]
|
3765
|
-
},
|
3766
|
-
"RemoveFacetFromObjectRequest":{
|
3767
|
-
"type":"structure",
|
3768
|
-
"required":[
|
3769
|
-
"DirectoryArn",
|
3770
|
-
"SchemaFacet",
|
3771
|
-
"ObjectReference"
|
3772
|
-
],
|
3773
|
-
"members":{
|
3774
|
-
"DirectoryArn":{
|
3775
|
-
"shape":"Arn",
|
3776
|
-
"location":"header",
|
3777
|
-
"locationName":"x-amz-data-partition"
|
3778
|
-
},
|
3779
|
-
"SchemaFacet":{"shape":"SchemaFacet"},
|
3780
|
-
"ObjectReference":{"shape":"ObjectReference"}
|
3781
|
-
}
|
3782
|
-
},
|
3783
|
-
"RemoveFacetFromObjectResponse":{
|
3784
|
-
"type":"structure",
|
3785
|
-
"members":{
|
3786
|
-
}
|
3787
|
-
},
|
3788
|
-
"RequiredAttributeBehavior":{
|
3789
|
-
"type":"string",
|
3790
|
-
"enum":[
|
3791
|
-
"REQUIRED_ALWAYS",
|
3792
|
-
"NOT_REQUIRED"
|
3793
|
-
]
|
3794
|
-
},
|
3795
|
-
"ResourceNotFoundException":{
|
3796
|
-
"type":"structure",
|
3797
|
-
"members":{
|
3798
|
-
"Message":{"shape":"ExceptionMessage"}
|
3799
|
-
},
|
3800
|
-
"error":{"httpStatusCode":404},
|
3801
|
-
"exception":true
|
3802
|
-
},
|
3803
|
-
"RetryableConflictException":{
|
3804
|
-
"type":"structure",
|
3805
|
-
"members":{
|
3806
|
-
"Message":{"shape":"ExceptionMessage"}
|
3807
|
-
},
|
3808
|
-
"error":{"httpStatusCode":409},
|
3809
|
-
"exception":true
|
3810
|
-
},
|
3811
|
-
"Rule":{
|
3812
|
-
"type":"structure",
|
3813
|
-
"members":{
|
3814
|
-
"Type":{"shape":"RuleType"},
|
3815
|
-
"Parameters":{"shape":"RuleParameterMap"}
|
3816
|
-
}
|
3817
|
-
},
|
3818
|
-
"RuleKey":{
|
3819
|
-
"type":"string",
|
3820
|
-
"max":64,
|
3821
|
-
"min":1,
|
3822
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
3823
|
-
},
|
3824
|
-
"RuleMap":{
|
3825
|
-
"type":"map",
|
3826
|
-
"key":{"shape":"RuleKey"},
|
3827
|
-
"value":{"shape":"Rule"}
|
3828
|
-
},
|
3829
|
-
"RuleParameterKey":{"type":"string"},
|
3830
|
-
"RuleParameterMap":{
|
3831
|
-
"type":"map",
|
3832
|
-
"key":{"shape":"RuleParameterKey"},
|
3833
|
-
"value":{"shape":"RuleParameterValue"}
|
3834
|
-
},
|
3835
|
-
"RuleParameterValue":{"type":"string"},
|
3836
|
-
"RuleType":{
|
3837
|
-
"type":"string",
|
3838
|
-
"enum":[
|
3839
|
-
"BINARY_LENGTH",
|
3840
|
-
"NUMBER_COMPARISON",
|
3841
|
-
"STRING_FROM_SET",
|
3842
|
-
"STRING_LENGTH"
|
3843
|
-
]
|
3844
|
-
},
|
3845
|
-
"SchemaAlreadyExistsException":{
|
3846
|
-
"type":"structure",
|
3847
|
-
"members":{
|
3848
|
-
"Message":{"shape":"ExceptionMessage"}
|
3849
|
-
},
|
3850
|
-
"error":{"httpStatusCode":400},
|
3851
|
-
"exception":true
|
3852
|
-
},
|
3853
|
-
"SchemaAlreadyPublishedException":{
|
3854
|
-
"type":"structure",
|
3855
|
-
"members":{
|
3856
|
-
"Message":{"shape":"ExceptionMessage"}
|
3857
|
-
},
|
3858
|
-
"error":{"httpStatusCode":400},
|
3859
|
-
"exception":true
|
3860
|
-
},
|
3861
|
-
"SchemaFacet":{
|
3862
|
-
"type":"structure",
|
3863
|
-
"members":{
|
3864
|
-
"SchemaArn":{"shape":"Arn"},
|
3865
|
-
"FacetName":{"shape":"FacetName"}
|
3866
|
-
}
|
3867
|
-
},
|
3868
|
-
"SchemaFacetList":{
|
3869
|
-
"type":"list",
|
3870
|
-
"member":{"shape":"SchemaFacet"}
|
3871
|
-
},
|
3872
|
-
"SchemaJsonDocument":{"type":"string"},
|
3873
|
-
"SchemaName":{
|
3874
|
-
"type":"string",
|
3875
|
-
"max":32,
|
3876
|
-
"min":1,
|
3877
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
3878
|
-
},
|
3879
|
-
"SelectorObjectReference":{"type":"string"},
|
3880
|
-
"StillContainsLinksException":{
|
3881
|
-
"type":"structure",
|
3882
|
-
"members":{
|
3883
|
-
"Message":{"shape":"ExceptionMessage"}
|
3884
|
-
},
|
3885
|
-
"error":{"httpStatusCode":400},
|
3886
|
-
"exception":true
|
3887
|
-
},
|
3888
|
-
"StringAttributeValue":{"type":"string"},
|
3889
|
-
"Tag":{
|
3890
|
-
"type":"structure",
|
3891
|
-
"members":{
|
3892
|
-
"Key":{"shape":"TagKey"},
|
3893
|
-
"Value":{"shape":"TagValue"}
|
3894
|
-
}
|
3895
|
-
},
|
3896
|
-
"TagKey":{"type":"string"},
|
3897
|
-
"TagKeyList":{
|
3898
|
-
"type":"list",
|
3899
|
-
"member":{"shape":"TagKey"}
|
3900
|
-
},
|
3901
|
-
"TagList":{
|
3902
|
-
"type":"list",
|
3903
|
-
"member":{"shape":"Tag"}
|
3904
|
-
},
|
3905
|
-
"TagResourceRequest":{
|
3906
|
-
"type":"structure",
|
3907
|
-
"required":[
|
3908
|
-
"ResourceArn",
|
3909
|
-
"Tags"
|
3910
|
-
],
|
3911
|
-
"members":{
|
3912
|
-
"ResourceArn":{"shape":"Arn"},
|
3913
|
-
"Tags":{"shape":"TagList"}
|
3914
|
-
}
|
3915
|
-
},
|
3916
|
-
"TagResourceResponse":{
|
3917
|
-
"type":"structure",
|
3918
|
-
"members":{
|
3919
|
-
}
|
3920
|
-
},
|
3921
|
-
"TagValue":{"type":"string"},
|
3922
|
-
"TagsNumberResults":{
|
3923
|
-
"type":"integer",
|
3924
|
-
"min":50
|
3925
|
-
},
|
3926
|
-
"TypedAttributeValue":{
|
3927
|
-
"type":"structure",
|
3928
|
-
"members":{
|
3929
|
-
"StringValue":{"shape":"StringAttributeValue"},
|
3930
|
-
"BinaryValue":{"shape":"BinaryAttributeValue"},
|
3931
|
-
"BooleanValue":{"shape":"BooleanAttributeValue"},
|
3932
|
-
"NumberValue":{"shape":"NumberAttributeValue"},
|
3933
|
-
"DatetimeValue":{"shape":"DatetimeAttributeValue"}
|
3934
|
-
}
|
3935
|
-
},
|
3936
|
-
"TypedAttributeValueRange":{
|
3937
|
-
"type":"structure",
|
3938
|
-
"required":[
|
3939
|
-
"StartMode",
|
3940
|
-
"EndMode"
|
3941
|
-
],
|
3942
|
-
"members":{
|
3943
|
-
"StartMode":{"shape":"RangeMode"},
|
3944
|
-
"StartValue":{"shape":"TypedAttributeValue"},
|
3945
|
-
"EndMode":{"shape":"RangeMode"},
|
3946
|
-
"EndValue":{"shape":"TypedAttributeValue"}
|
3947
|
-
}
|
3948
|
-
},
|
3949
|
-
"TypedLinkAttributeDefinition":{
|
3950
|
-
"type":"structure",
|
3951
|
-
"required":[
|
3952
|
-
"Name",
|
3953
|
-
"Type",
|
3954
|
-
"RequiredBehavior"
|
3955
|
-
],
|
3956
|
-
"members":{
|
3957
|
-
"Name":{"shape":"AttributeName"},
|
3958
|
-
"Type":{"shape":"FacetAttributeType"},
|
3959
|
-
"DefaultValue":{"shape":"TypedAttributeValue"},
|
3960
|
-
"IsImmutable":{"shape":"Bool"},
|
3961
|
-
"Rules":{"shape":"RuleMap"},
|
3962
|
-
"RequiredBehavior":{"shape":"RequiredAttributeBehavior"}
|
3963
|
-
}
|
3964
|
-
},
|
3965
|
-
"TypedLinkAttributeDefinitionList":{
|
3966
|
-
"type":"list",
|
3967
|
-
"member":{"shape":"TypedLinkAttributeDefinition"}
|
3968
|
-
},
|
3969
|
-
"TypedLinkAttributeRange":{
|
3970
|
-
"type":"structure",
|
3971
|
-
"required":["Range"],
|
3972
|
-
"members":{
|
3973
|
-
"AttributeName":{"shape":"AttributeName"},
|
3974
|
-
"Range":{"shape":"TypedAttributeValueRange"}
|
3975
|
-
}
|
3976
|
-
},
|
3977
|
-
"TypedLinkAttributeRangeList":{
|
3978
|
-
"type":"list",
|
3979
|
-
"member":{"shape":"TypedLinkAttributeRange"}
|
3980
|
-
},
|
3981
|
-
"TypedLinkFacet":{
|
3982
|
-
"type":"structure",
|
3983
|
-
"required":[
|
3984
|
-
"Name",
|
3985
|
-
"Attributes",
|
3986
|
-
"IdentityAttributeOrder"
|
3987
|
-
],
|
3988
|
-
"members":{
|
3989
|
-
"Name":{"shape":"TypedLinkName"},
|
3990
|
-
"Attributes":{"shape":"TypedLinkAttributeDefinitionList"},
|
3991
|
-
"IdentityAttributeOrder":{"shape":"AttributeNameList"}
|
3992
|
-
}
|
3993
|
-
},
|
3994
|
-
"TypedLinkFacetAttributeUpdate":{
|
3995
|
-
"type":"structure",
|
3996
|
-
"required":[
|
3997
|
-
"Attribute",
|
3998
|
-
"Action"
|
3999
|
-
],
|
4000
|
-
"members":{
|
4001
|
-
"Attribute":{"shape":"TypedLinkAttributeDefinition"},
|
4002
|
-
"Action":{"shape":"UpdateActionType"}
|
4003
|
-
}
|
4004
|
-
},
|
4005
|
-
"TypedLinkFacetAttributeUpdateList":{
|
4006
|
-
"type":"list",
|
4007
|
-
"member":{"shape":"TypedLinkFacetAttributeUpdate"}
|
4008
|
-
},
|
4009
|
-
"TypedLinkName":{
|
4010
|
-
"type":"string",
|
4011
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
4012
|
-
},
|
4013
|
-
"TypedLinkNameList":{
|
4014
|
-
"type":"list",
|
4015
|
-
"member":{"shape":"TypedLinkName"}
|
4016
|
-
},
|
4017
|
-
"TypedLinkSchemaAndFacetName":{
|
4018
|
-
"type":"structure",
|
4019
|
-
"required":[
|
4020
|
-
"SchemaArn",
|
4021
|
-
"TypedLinkName"
|
4022
|
-
],
|
4023
|
-
"members":{
|
4024
|
-
"SchemaArn":{"shape":"Arn"},
|
4025
|
-
"TypedLinkName":{"shape":"TypedLinkName"}
|
4026
|
-
}
|
4027
|
-
},
|
4028
|
-
"TypedLinkSpecifier":{
|
4029
|
-
"type":"structure",
|
4030
|
-
"required":[
|
4031
|
-
"TypedLinkFacet",
|
4032
|
-
"SourceObjectReference",
|
4033
|
-
"TargetObjectReference",
|
4034
|
-
"IdentityAttributeValues"
|
4035
|
-
],
|
4036
|
-
"members":{
|
4037
|
-
"TypedLinkFacet":{"shape":"TypedLinkSchemaAndFacetName"},
|
4038
|
-
"SourceObjectReference":{"shape":"ObjectReference"},
|
4039
|
-
"TargetObjectReference":{"shape":"ObjectReference"},
|
4040
|
-
"IdentityAttributeValues":{"shape":"AttributeNameAndValueList"}
|
4041
|
-
}
|
4042
|
-
},
|
4043
|
-
"TypedLinkSpecifierList":{
|
4044
|
-
"type":"list",
|
4045
|
-
"member":{"shape":"TypedLinkSpecifier"}
|
4046
|
-
},
|
4047
|
-
"UnsupportedIndexTypeException":{
|
4048
|
-
"type":"structure",
|
4049
|
-
"members":{
|
4050
|
-
"Message":{"shape":"ExceptionMessage"}
|
4051
|
-
},
|
4052
|
-
"error":{"httpStatusCode":400},
|
4053
|
-
"exception":true
|
4054
|
-
},
|
4055
|
-
"UntagResourceRequest":{
|
4056
|
-
"type":"structure",
|
4057
|
-
"required":[
|
4058
|
-
"ResourceArn",
|
4059
|
-
"TagKeys"
|
4060
|
-
],
|
4061
|
-
"members":{
|
4062
|
-
"ResourceArn":{"shape":"Arn"},
|
4063
|
-
"TagKeys":{"shape":"TagKeyList"}
|
4064
|
-
}
|
4065
|
-
},
|
4066
|
-
"UntagResourceResponse":{
|
4067
|
-
"type":"structure",
|
4068
|
-
"members":{
|
4069
|
-
}
|
4070
|
-
},
|
4071
|
-
"UpdateActionType":{
|
4072
|
-
"type":"string",
|
4073
|
-
"enum":[
|
4074
|
-
"CREATE_OR_UPDATE",
|
4075
|
-
"DELETE"
|
4076
|
-
]
|
4077
|
-
},
|
4078
|
-
"UpdateFacetRequest":{
|
4079
|
-
"type":"structure",
|
4080
|
-
"required":[
|
4081
|
-
"SchemaArn",
|
4082
|
-
"Name"
|
4083
|
-
],
|
4084
|
-
"members":{
|
4085
|
-
"SchemaArn":{
|
4086
|
-
"shape":"Arn",
|
4087
|
-
"location":"header",
|
4088
|
-
"locationName":"x-amz-data-partition"
|
4089
|
-
},
|
4090
|
-
"Name":{"shape":"FacetName"},
|
4091
|
-
"AttributeUpdates":{"shape":"FacetAttributeUpdateList"},
|
4092
|
-
"ObjectType":{"shape":"ObjectType"}
|
4093
|
-
}
|
4094
|
-
},
|
4095
|
-
"UpdateFacetResponse":{
|
4096
|
-
"type":"structure",
|
4097
|
-
"members":{
|
4098
|
-
}
|
4099
|
-
},
|
4100
|
-
"UpdateLinkAttributesRequest":{
|
4101
|
-
"type":"structure",
|
4102
|
-
"required":[
|
4103
|
-
"DirectoryArn",
|
4104
|
-
"TypedLinkSpecifier",
|
4105
|
-
"AttributeUpdates"
|
4106
|
-
],
|
4107
|
-
"members":{
|
4108
|
-
"DirectoryArn":{
|
4109
|
-
"shape":"Arn",
|
4110
|
-
"location":"header",
|
4111
|
-
"locationName":"x-amz-data-partition"
|
4112
|
-
},
|
4113
|
-
"TypedLinkSpecifier":{"shape":"TypedLinkSpecifier"},
|
4114
|
-
"AttributeUpdates":{"shape":"LinkAttributeUpdateList"}
|
4115
|
-
}
|
4116
|
-
},
|
4117
|
-
"UpdateLinkAttributesResponse":{
|
4118
|
-
"type":"structure",
|
4119
|
-
"members":{
|
4120
|
-
}
|
4121
|
-
},
|
4122
|
-
"UpdateObjectAttributesRequest":{
|
4123
|
-
"type":"structure",
|
4124
|
-
"required":[
|
4125
|
-
"DirectoryArn",
|
4126
|
-
"ObjectReference",
|
4127
|
-
"AttributeUpdates"
|
4128
|
-
],
|
4129
|
-
"members":{
|
4130
|
-
"DirectoryArn":{
|
4131
|
-
"shape":"Arn",
|
4132
|
-
"location":"header",
|
4133
|
-
"locationName":"x-amz-data-partition"
|
4134
|
-
},
|
4135
|
-
"ObjectReference":{"shape":"ObjectReference"},
|
4136
|
-
"AttributeUpdates":{"shape":"ObjectAttributeUpdateList"}
|
4137
|
-
}
|
4138
|
-
},
|
4139
|
-
"UpdateObjectAttributesResponse":{
|
4140
|
-
"type":"structure",
|
4141
|
-
"members":{
|
4142
|
-
"ObjectIdentifier":{"shape":"ObjectIdentifier"}
|
4143
|
-
}
|
4144
|
-
},
|
4145
|
-
"UpdateSchemaRequest":{
|
4146
|
-
"type":"structure",
|
4147
|
-
"required":[
|
4148
|
-
"SchemaArn",
|
4149
|
-
"Name"
|
4150
|
-
],
|
4151
|
-
"members":{
|
4152
|
-
"SchemaArn":{
|
4153
|
-
"shape":"Arn",
|
4154
|
-
"location":"header",
|
4155
|
-
"locationName":"x-amz-data-partition"
|
4156
|
-
},
|
4157
|
-
"Name":{"shape":"SchemaName"}
|
4158
|
-
}
|
4159
|
-
},
|
4160
|
-
"UpdateSchemaResponse":{
|
4161
|
-
"type":"structure",
|
4162
|
-
"members":{
|
4163
|
-
"SchemaArn":{"shape":"Arn"}
|
4164
|
-
}
|
4165
|
-
},
|
4166
|
-
"UpdateTypedLinkFacetRequest":{
|
4167
|
-
"type":"structure",
|
4168
|
-
"required":[
|
4169
|
-
"SchemaArn",
|
4170
|
-
"Name",
|
4171
|
-
"AttributeUpdates",
|
4172
|
-
"IdentityAttributeOrder"
|
4173
|
-
],
|
4174
|
-
"members":{
|
4175
|
-
"SchemaArn":{
|
4176
|
-
"shape":"Arn",
|
4177
|
-
"location":"header",
|
4178
|
-
"locationName":"x-amz-data-partition"
|
4179
|
-
},
|
4180
|
-
"Name":{"shape":"TypedLinkName"},
|
4181
|
-
"AttributeUpdates":{"shape":"TypedLinkFacetAttributeUpdateList"},
|
4182
|
-
"IdentityAttributeOrder":{"shape":"AttributeNameList"}
|
4183
|
-
}
|
4184
|
-
},
|
4185
|
-
"UpdateTypedLinkFacetResponse":{
|
4186
|
-
"type":"structure",
|
4187
|
-
"members":{
|
4188
|
-
}
|
4189
|
-
},
|
4190
|
-
"UpgradeAppliedSchemaRequest":{
|
4191
|
-
"type":"structure",
|
4192
|
-
"required":[
|
4193
|
-
"PublishedSchemaArn",
|
4194
|
-
"DirectoryArn"
|
4195
|
-
],
|
4196
|
-
"members":{
|
4197
|
-
"PublishedSchemaArn":{"shape":"Arn"},
|
4198
|
-
"DirectoryArn":{"shape":"Arn"},
|
4199
|
-
"DryRun":{"shape":"Bool"}
|
4200
|
-
}
|
4201
|
-
},
|
4202
|
-
"UpgradeAppliedSchemaResponse":{
|
4203
|
-
"type":"structure",
|
4204
|
-
"members":{
|
4205
|
-
"UpgradedSchemaArn":{"shape":"Arn"},
|
4206
|
-
"DirectoryArn":{"shape":"Arn"}
|
4207
|
-
}
|
4208
|
-
},
|
4209
|
-
"UpgradePublishedSchemaRequest":{
|
4210
|
-
"type":"structure",
|
4211
|
-
"required":[
|
4212
|
-
"DevelopmentSchemaArn",
|
4213
|
-
"PublishedSchemaArn",
|
4214
|
-
"MinorVersion"
|
4215
|
-
],
|
4216
|
-
"members":{
|
4217
|
-
"DevelopmentSchemaArn":{"shape":"Arn"},
|
4218
|
-
"PublishedSchemaArn":{"shape":"Arn"},
|
4219
|
-
"MinorVersion":{"shape":"Version"},
|
4220
|
-
"DryRun":{"shape":"Bool"}
|
4221
|
-
}
|
4222
|
-
},
|
4223
|
-
"UpgradePublishedSchemaResponse":{
|
4224
|
-
"type":"structure",
|
4225
|
-
"members":{
|
4226
|
-
"UpgradedSchemaArn":{"shape":"Arn"}
|
4227
|
-
}
|
4228
|
-
},
|
4229
|
-
"ValidationException":{
|
4230
|
-
"type":"structure",
|
4231
|
-
"members":{
|
4232
|
-
"Message":{"shape":"ExceptionMessage"}
|
4233
|
-
},
|
4234
|
-
"error":{"httpStatusCode":400},
|
4235
|
-
"exception":true
|
4236
|
-
},
|
4237
|
-
"Version":{
|
4238
|
-
"type":"string",
|
4239
|
-
"max":10,
|
4240
|
-
"min":1,
|
4241
|
-
"pattern":"^[a-zA-Z0-9._-]*$"
|
4242
|
-
}
|
4243
|
-
}
|
4244
|
-
}
|