aws-sdk-core 2.11.174 → 2.11.175
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/apis/appsync/2017-07-25/api-2.json +360 -10
- data/apis/autoscaling-plans/2018-01-06/api-2.json +134 -4
- data/apis/cloudfront/2018-11-05/api-2.json +4004 -0
- data/apis/cloudfront/2018-11-05/examples-1.json +5 -0
- data/apis/cloudfront/2018-11-05/paginators-1.json +32 -0
- data/apis/cloudfront/2018-11-05/smoke.json +20 -0
- data/apis/cloudfront/2018-11-05/waiters-2.json +47 -0
- data/apis/devicefarm/2015-06-23/api-2.json +4 -81
- data/apis/medialive/2017-10-14/api-2.json +22 -0
- data/apis/monitoring/2010-08-01/api-2.json +6 -6
- data/apis/quicksight/2018-04-01/api-2.json +1157 -0
- data/apis/quicksight/2018-04-01/examples-1.json +5 -0
- data/apis/quicksight/2018-04-01/paginators-1.json +4 -0
- data/apis/rds-data/2018-08-01/api-2.json +317 -0
- data/apis/rds-data/2018-08-01/examples-1.json +4 -0
- data/apis/rds-data/2018-08-01/paginators-1.json +3 -0
- data/apis/ssm/2014-11-06/api-2.json +108 -8
- data/apis/xray/2016-04-12/api-2.json +170 -0
- data/lib/aws-sdk-core.rb +2 -0
- data/lib/aws-sdk-core/cloudfront.rb +5 -5
- data/lib/aws-sdk-core/quicksight.rb +6 -0
- data/lib/aws-sdk-core/rdsdataservice.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +9 -1
- metadata +15 -2
@@ -0,0 +1,32 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListCloudFrontOriginAccessIdentities": {
|
4
|
+
"input_token": "Marker",
|
5
|
+
"limit_key": "MaxItems",
|
6
|
+
"more_results": "CloudFrontOriginAccessIdentityList.IsTruncated",
|
7
|
+
"output_token": "CloudFrontOriginAccessIdentityList.NextMarker",
|
8
|
+
"result_key": "CloudFrontOriginAccessIdentityList.Items"
|
9
|
+
},
|
10
|
+
"ListDistributions": {
|
11
|
+
"input_token": "Marker",
|
12
|
+
"limit_key": "MaxItems",
|
13
|
+
"more_results": "DistributionList.IsTruncated",
|
14
|
+
"output_token": "DistributionList.NextMarker",
|
15
|
+
"result_key": "DistributionList.Items"
|
16
|
+
},
|
17
|
+
"ListInvalidations": {
|
18
|
+
"input_token": "Marker",
|
19
|
+
"limit_key": "MaxItems",
|
20
|
+
"more_results": "InvalidationList.IsTruncated",
|
21
|
+
"output_token": "InvalidationList.NextMarker",
|
22
|
+
"result_key": "InvalidationList.Items"
|
23
|
+
},
|
24
|
+
"ListStreamingDistributions": {
|
25
|
+
"input_token": "Marker",
|
26
|
+
"limit_key": "MaxItems",
|
27
|
+
"more_results": "StreamingDistributionList.IsTruncated",
|
28
|
+
"output_token": "StreamingDistributionList.NextMarker",
|
29
|
+
"result_key": "StreamingDistributionList.Items"
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"version": 1,
|
3
|
+
"defaultRegion": "us-east-1",
|
4
|
+
"testCases": [
|
5
|
+
{
|
6
|
+
"operationName": "ListCloudFrontOriginAccessIdentities",
|
7
|
+
"input": {
|
8
|
+
"MaxItems": "1"
|
9
|
+
},
|
10
|
+
"errorExpectedFromService": false
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"operationName": "GetDistribution",
|
14
|
+
"input": {
|
15
|
+
"Id": "fake-id"
|
16
|
+
},
|
17
|
+
"errorExpectedFromService": true
|
18
|
+
}
|
19
|
+
]
|
20
|
+
}
|
@@ -0,0 +1,47 @@
|
|
1
|
+
{
|
2
|
+
"version": 2,
|
3
|
+
"waiters": {
|
4
|
+
"DistributionDeployed": {
|
5
|
+
"delay": 60,
|
6
|
+
"operation": "GetDistribution",
|
7
|
+
"maxAttempts": 25,
|
8
|
+
"description": "Wait until a distribution is deployed.",
|
9
|
+
"acceptors": [
|
10
|
+
{
|
11
|
+
"expected": "Deployed",
|
12
|
+
"matcher": "path",
|
13
|
+
"state": "success",
|
14
|
+
"argument": "Distribution.Status"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
},
|
18
|
+
"InvalidationCompleted": {
|
19
|
+
"delay": 20,
|
20
|
+
"operation": "GetInvalidation",
|
21
|
+
"maxAttempts": 30,
|
22
|
+
"description": "Wait until an invalidation has completed.",
|
23
|
+
"acceptors": [
|
24
|
+
{
|
25
|
+
"expected": "Completed",
|
26
|
+
"matcher": "path",
|
27
|
+
"state": "success",
|
28
|
+
"argument": "Invalidation.Status"
|
29
|
+
}
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"StreamingDistributionDeployed": {
|
33
|
+
"delay": 60,
|
34
|
+
"operation": "GetStreamingDistribution",
|
35
|
+
"maxAttempts": 25,
|
36
|
+
"description": "Wait until a streaming distribution is deployed.",
|
37
|
+
"acceptors": [
|
38
|
+
{
|
39
|
+
"expected": "Deployed",
|
40
|
+
"matcher": "path",
|
41
|
+
"state": "success",
|
42
|
+
"argument": "StreamingDistribution.Status"
|
43
|
+
}
|
44
|
+
]
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
@@ -1392,8 +1392,7 @@
|
|
1392
1392
|
"remoteDebugEnabled":{"shape":"Boolean"},
|
1393
1393
|
"fleetType":{"shape":"String"},
|
1394
1394
|
"fleetName":{"shape":"String"},
|
1395
|
-
"instances":{"shape":"DeviceInstances"}
|
1396
|
-
"availability":{"shape":"DeviceAvailability"}
|
1395
|
+
"instances":{"shape":"DeviceInstances"}
|
1397
1396
|
}
|
1398
1397
|
},
|
1399
1398
|
"DeviceAttribute":{
|
@@ -1411,61 +1410,6 @@
|
|
1411
1410
|
"FLEET_TYPE"
|
1412
1411
|
]
|
1413
1412
|
},
|
1414
|
-
"DeviceAvailability":{
|
1415
|
-
"type":"string",
|
1416
|
-
"enum":[
|
1417
|
-
"TEMPORARY_NOT_AVAILABLE",
|
1418
|
-
"BUSY",
|
1419
|
-
"AVAILABLE",
|
1420
|
-
"HIGHLY_AVAILABLE"
|
1421
|
-
]
|
1422
|
-
},
|
1423
|
-
"DeviceFilter":{
|
1424
|
-
"type":"structure",
|
1425
|
-
"members":{
|
1426
|
-
"attribute":{"shape":"DeviceFilterAttribute"},
|
1427
|
-
"operator":{"shape":"DeviceFilterOperator"},
|
1428
|
-
"values":{"shape":"DeviceFilterValues"}
|
1429
|
-
}
|
1430
|
-
},
|
1431
|
-
"DeviceFilterAttribute":{
|
1432
|
-
"type":"string",
|
1433
|
-
"enum":[
|
1434
|
-
"ARN",
|
1435
|
-
"PLATFORM",
|
1436
|
-
"OS_VERSION",
|
1437
|
-
"MODEL",
|
1438
|
-
"AVAILABILITY",
|
1439
|
-
"FORM_FACTOR",
|
1440
|
-
"MANUFACTURER",
|
1441
|
-
"REMOTE_ACCESS_ENABLED",
|
1442
|
-
"REMOTE_DEBUG_ENABLED",
|
1443
|
-
"INSTANCE_ARN",
|
1444
|
-
"INSTANCE_LABELS",
|
1445
|
-
"FLEET_TYPE"
|
1446
|
-
]
|
1447
|
-
},
|
1448
|
-
"DeviceFilterOperator":{
|
1449
|
-
"type":"string",
|
1450
|
-
"enum":[
|
1451
|
-
"EQUALS",
|
1452
|
-
"LESS_THAN",
|
1453
|
-
"LESS_THAN_OR_EQUALS",
|
1454
|
-
"GREATER_THAN",
|
1455
|
-
"GREATER_THAN_OR_EQUALS",
|
1456
|
-
"IN",
|
1457
|
-
"NOT_IN",
|
1458
|
-
"CONTAINS"
|
1459
|
-
]
|
1460
|
-
},
|
1461
|
-
"DeviceFilterValues":{
|
1462
|
-
"type":"list",
|
1463
|
-
"member":{"shape":"String"}
|
1464
|
-
},
|
1465
|
-
"DeviceFilters":{
|
1466
|
-
"type":"list",
|
1467
|
-
"member":{"shape":"DeviceFilter"}
|
1468
|
-
},
|
1469
1413
|
"DeviceFormFactor":{
|
1470
1414
|
"type":"string",
|
1471
1415
|
"enum":[
|
@@ -1540,25 +1484,6 @@
|
|
1540
1484
|
"type":"list",
|
1541
1485
|
"member":{"shape":"DevicePool"}
|
1542
1486
|
},
|
1543
|
-
"DeviceSelectionConfiguration":{
|
1544
|
-
"type":"structure",
|
1545
|
-
"required":[
|
1546
|
-
"filters",
|
1547
|
-
"maxDevices"
|
1548
|
-
],
|
1549
|
-
"members":{
|
1550
|
-
"filters":{"shape":"DeviceFilters"},
|
1551
|
-
"maxDevices":{"shape":"Integer"}
|
1552
|
-
}
|
1553
|
-
},
|
1554
|
-
"DeviceSelectionResult":{
|
1555
|
-
"type":"structure",
|
1556
|
-
"members":{
|
1557
|
-
"filters":{"shape":"DeviceFilters"},
|
1558
|
-
"matchedDevicesCount":{"shape":"Integer"},
|
1559
|
-
"maxDevices":{"shape":"Integer"}
|
1560
|
-
}
|
1561
|
-
},
|
1562
1487
|
"Devices":{
|
1563
1488
|
"type":"list",
|
1564
1489
|
"member":{"shape":"Device"}
|
@@ -1998,8 +1923,7 @@
|
|
1998
1923
|
"type":"structure",
|
1999
1924
|
"members":{
|
2000
1925
|
"arn":{"shape":"AmazonResourceName"},
|
2001
|
-
"nextToken":{"shape":"PaginationToken"}
|
2002
|
-
"filters":{"shape":"DeviceFilters"}
|
1926
|
+
"nextToken":{"shape":"PaginationToken"}
|
2003
1927
|
}
|
2004
1928
|
},
|
2005
1929
|
"ListDevicesResult":{
|
@@ -2579,8 +2503,7 @@
|
|
2579
2503
|
"customerArtifactPaths":{"shape":"CustomerArtifactPaths"},
|
2580
2504
|
"webUrl":{"shape":"String"},
|
2581
2505
|
"skipAppResign":{"shape":"SkipAppResign"},
|
2582
|
-
"testSpecArn":{"shape":"AmazonResourceName"}
|
2583
|
-
"deviceSelectionResult":{"shape":"DeviceSelectionResult"}
|
2506
|
+
"testSpecArn":{"shape":"AmazonResourceName"}
|
2584
2507
|
}
|
2585
2508
|
},
|
2586
2509
|
"Runs":{
|
@@ -2639,13 +2562,13 @@
|
|
2639
2562
|
"type":"structure",
|
2640
2563
|
"required":[
|
2641
2564
|
"projectArn",
|
2565
|
+
"devicePoolArn",
|
2642
2566
|
"test"
|
2643
2567
|
],
|
2644
2568
|
"members":{
|
2645
2569
|
"projectArn":{"shape":"AmazonResourceName"},
|
2646
2570
|
"appArn":{"shape":"AmazonResourceName"},
|
2647
2571
|
"devicePoolArn":{"shape":"AmazonResourceName"},
|
2648
|
-
"deviceSelectionConfiguration":{"shape":"DeviceSelectionConfiguration"},
|
2649
2572
|
"name":{"shape":"Name"},
|
2650
2573
|
"test":{"shape":"ScheduleRunTest"},
|
2651
2574
|
"configuration":{"shape":"ScheduleRunConfiguration"},
|
@@ -3974,6 +3974,10 @@
|
|
3974
3974
|
"shape": "__integerMin0Max3600",
|
3975
3975
|
"locationName": "programDateTimePeriod"
|
3976
3976
|
},
|
3977
|
+
"RedundantManifest": {
|
3978
|
+
"shape": "HlsRedundantManifest",
|
3979
|
+
"locationName": "redundantManifest"
|
3980
|
+
},
|
3977
3981
|
"SegmentLength": {
|
3978
3982
|
"shape": "__integerMin1",
|
3979
3983
|
"locationName": "segmentLength"
|
@@ -4132,6 +4136,13 @@
|
|
4132
4136
|
"INCLUDE"
|
4133
4137
|
]
|
4134
4138
|
},
|
4139
|
+
"HlsRedundantManifest": {
|
4140
|
+
"type": "string",
|
4141
|
+
"enum": [
|
4142
|
+
"DISABLED",
|
4143
|
+
"ENABLED"
|
4144
|
+
]
|
4145
|
+
},
|
4135
4146
|
"HlsSegmentationMode": {
|
4136
4147
|
"type": "string",
|
4137
4148
|
"enum": [
|
@@ -4371,6 +4382,13 @@
|
|
4371
4382
|
"PAUSE_OUTPUT"
|
4372
4383
|
]
|
4373
4384
|
},
|
4385
|
+
"InputLossActionForRtmpOut": {
|
4386
|
+
"type": "string",
|
4387
|
+
"enum": [
|
4388
|
+
"EMIT_OUTPUT",
|
4389
|
+
"PAUSE_OUTPUT"
|
4390
|
+
]
|
4391
|
+
},
|
4374
4392
|
"InputLossActionForUdpOut": {
|
4375
4393
|
"type": "string",
|
4376
4394
|
"enum": [
|
@@ -6052,6 +6070,10 @@
|
|
6052
6070
|
"shape": "RtmpCaptionData",
|
6053
6071
|
"locationName": "captionData"
|
6054
6072
|
},
|
6073
|
+
"InputLossAction": {
|
6074
|
+
"shape": "InputLossActionForRtmpOut",
|
6075
|
+
"locationName": "inputLossAction"
|
6076
|
+
},
|
6055
6077
|
"RestartDelay": {
|
6056
6078
|
"shape": "__integerMin0",
|
6057
6079
|
"locationName": "restartDelay"
|
@@ -828,7 +828,8 @@
|
|
828
828
|
"Threshold":{"shape":"Threshold"},
|
829
829
|
"ComparisonOperator":{"shape":"ComparisonOperator"},
|
830
830
|
"TreatMissingData":{"shape":"TreatMissingData"},
|
831
|
-
"EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"}
|
831
|
+
"EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"},
|
832
|
+
"Metrics":{"shape":"MetricDataQueries"}
|
832
833
|
},
|
833
834
|
"xmlOrder":[
|
834
835
|
"AlarmName",
|
@@ -855,7 +856,8 @@
|
|
855
856
|
"ExtendedStatistic",
|
856
857
|
"TreatMissingData",
|
857
858
|
"EvaluateLowSampleCountPercentile",
|
858
|
-
"DatapointsToAlarm"
|
859
|
+
"DatapointsToAlarm",
|
860
|
+
"Metrics"
|
859
861
|
]
|
860
862
|
},
|
861
863
|
"MetricAlarms":{
|
@@ -1001,9 +1003,6 @@
|
|
1001
1003
|
"type":"structure",
|
1002
1004
|
"required":[
|
1003
1005
|
"AlarmName",
|
1004
|
-
"MetricName",
|
1005
|
-
"Namespace",
|
1006
|
-
"Period",
|
1007
1006
|
"EvaluationPeriods",
|
1008
1007
|
"Threshold",
|
1009
1008
|
"ComparisonOperator"
|
@@ -1027,7 +1026,8 @@
|
|
1027
1026
|
"Threshold":{"shape":"Threshold"},
|
1028
1027
|
"ComparisonOperator":{"shape":"ComparisonOperator"},
|
1029
1028
|
"TreatMissingData":{"shape":"TreatMissingData"},
|
1030
|
-
"EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"}
|
1029
|
+
"EvaluateLowSampleCountPercentile":{"shape":"EvaluateLowSampleCountPercentile"},
|
1030
|
+
"Metrics":{"shape":"MetricDataQueries"}
|
1031
1031
|
}
|
1032
1032
|
},
|
1033
1033
|
"PutMetricDataInput":{
|
@@ -0,0 +1,1157 @@
|
|
1
|
+
{
|
2
|
+
"version":"2.0",
|
3
|
+
"metadata":{
|
4
|
+
"apiVersion":"2018-04-01",
|
5
|
+
"endpointPrefix":"quicksight",
|
6
|
+
"jsonVersion":"1.0",
|
7
|
+
"protocol":"rest-json",
|
8
|
+
"serviceFullName":"Amazon QuickSight",
|
9
|
+
"serviceId":"QuickSight",
|
10
|
+
"signatureVersion":"v4",
|
11
|
+
"uid":"quicksight-2018-04-01"
|
12
|
+
},
|
13
|
+
"operations":{
|
14
|
+
"CreateGroup":{
|
15
|
+
"name":"CreateGroup",
|
16
|
+
"http":{
|
17
|
+
"method":"POST",
|
18
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"
|
19
|
+
},
|
20
|
+
"input":{"shape":"CreateGroupRequest"},
|
21
|
+
"output":{"shape":"CreateGroupResponse"},
|
22
|
+
"errors":[
|
23
|
+
{"shape":"AccessDeniedException"},
|
24
|
+
{"shape":"InvalidParameterValueException"},
|
25
|
+
{"shape":"ResourceExistsException"},
|
26
|
+
{"shape":"ResourceNotFoundException"},
|
27
|
+
{"shape":"ThrottlingException"},
|
28
|
+
{"shape":"PreconditionNotMetException"},
|
29
|
+
{"shape":"LimitExceededException"},
|
30
|
+
{"shape":"InternalFailureException"},
|
31
|
+
{"shape":"ResourceUnavailableException"}
|
32
|
+
]
|
33
|
+
},
|
34
|
+
"CreateGroupMembership":{
|
35
|
+
"name":"CreateGroupMembership",
|
36
|
+
"http":{
|
37
|
+
"method":"PUT",
|
38
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"
|
39
|
+
},
|
40
|
+
"input":{"shape":"CreateGroupMembershipRequest"},
|
41
|
+
"output":{"shape":"CreateGroupMembershipResponse"},
|
42
|
+
"errors":[
|
43
|
+
{"shape":"AccessDeniedException"},
|
44
|
+
{"shape":"InvalidParameterValueException"},
|
45
|
+
{"shape":"ResourceNotFoundException"},
|
46
|
+
{"shape":"ThrottlingException"},
|
47
|
+
{"shape":"PreconditionNotMetException"},
|
48
|
+
{"shape":"InternalFailureException"},
|
49
|
+
{"shape":"ResourceUnavailableException"}
|
50
|
+
]
|
51
|
+
},
|
52
|
+
"DeleteGroup":{
|
53
|
+
"name":"DeleteGroup",
|
54
|
+
"http":{
|
55
|
+
"method":"DELETE",
|
56
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"
|
57
|
+
},
|
58
|
+
"input":{"shape":"DeleteGroupRequest"},
|
59
|
+
"output":{"shape":"DeleteGroupResponse"},
|
60
|
+
"errors":[
|
61
|
+
{"shape":"AccessDeniedException"},
|
62
|
+
{"shape":"InvalidParameterValueException"},
|
63
|
+
{"shape":"ResourceNotFoundException"},
|
64
|
+
{"shape":"ThrottlingException"},
|
65
|
+
{"shape":"PreconditionNotMetException"},
|
66
|
+
{"shape":"InternalFailureException"},
|
67
|
+
{"shape":"ResourceUnavailableException"}
|
68
|
+
]
|
69
|
+
},
|
70
|
+
"DeleteGroupMembership":{
|
71
|
+
"name":"DeleteGroupMembership",
|
72
|
+
"http":{
|
73
|
+
"method":"DELETE",
|
74
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"
|
75
|
+
},
|
76
|
+
"input":{"shape":"DeleteGroupMembershipRequest"},
|
77
|
+
"output":{"shape":"DeleteGroupMembershipResponse"},
|
78
|
+
"errors":[
|
79
|
+
{"shape":"AccessDeniedException"},
|
80
|
+
{"shape":"InvalidParameterValueException"},
|
81
|
+
{"shape":"ResourceNotFoundException"},
|
82
|
+
{"shape":"ThrottlingException"},
|
83
|
+
{"shape":"PreconditionNotMetException"},
|
84
|
+
{"shape":"InternalFailureException"},
|
85
|
+
{"shape":"ResourceUnavailableException"}
|
86
|
+
]
|
87
|
+
},
|
88
|
+
"DeleteUser":{
|
89
|
+
"name":"DeleteUser",
|
90
|
+
"http":{
|
91
|
+
"method":"DELETE",
|
92
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"
|
93
|
+
},
|
94
|
+
"input":{"shape":"DeleteUserRequest"},
|
95
|
+
"output":{"shape":"DeleteUserResponse"},
|
96
|
+
"errors":[
|
97
|
+
{"shape":"AccessDeniedException"},
|
98
|
+
{"shape":"InvalidParameterValueException"},
|
99
|
+
{"shape":"ResourceNotFoundException"},
|
100
|
+
{"shape":"ThrottlingException"},
|
101
|
+
{"shape":"InternalFailureException"},
|
102
|
+
{"shape":"ResourceUnavailableException"}
|
103
|
+
]
|
104
|
+
},
|
105
|
+
"DescribeGroup":{
|
106
|
+
"name":"DescribeGroup",
|
107
|
+
"http":{
|
108
|
+
"method":"GET",
|
109
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"
|
110
|
+
},
|
111
|
+
"input":{"shape":"DescribeGroupRequest"},
|
112
|
+
"output":{"shape":"DescribeGroupResponse"},
|
113
|
+
"errors":[
|
114
|
+
{"shape":"AccessDeniedException"},
|
115
|
+
{"shape":"InvalidParameterValueException"},
|
116
|
+
{"shape":"ResourceNotFoundException"},
|
117
|
+
{"shape":"ThrottlingException"},
|
118
|
+
{"shape":"PreconditionNotMetException"},
|
119
|
+
{"shape":"InternalFailureException"},
|
120
|
+
{"shape":"ResourceUnavailableException"}
|
121
|
+
]
|
122
|
+
},
|
123
|
+
"DescribeUser":{
|
124
|
+
"name":"DescribeUser",
|
125
|
+
"http":{
|
126
|
+
"method":"GET",
|
127
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"
|
128
|
+
},
|
129
|
+
"input":{"shape":"DescribeUserRequest"},
|
130
|
+
"output":{"shape":"DescribeUserResponse"},
|
131
|
+
"errors":[
|
132
|
+
{"shape":"AccessDeniedException"},
|
133
|
+
{"shape":"InvalidParameterValueException"},
|
134
|
+
{"shape":"ResourceNotFoundException"},
|
135
|
+
{"shape":"ThrottlingException"},
|
136
|
+
{"shape":"InternalFailureException"},
|
137
|
+
{"shape":"ResourceUnavailableException"}
|
138
|
+
]
|
139
|
+
},
|
140
|
+
"GetDashboardEmbedUrl":{
|
141
|
+
"name":"GetDashboardEmbedUrl",
|
142
|
+
"http":{
|
143
|
+
"method":"GET",
|
144
|
+
"requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/embed-url"
|
145
|
+
},
|
146
|
+
"input":{"shape":"GetDashboardEmbedUrlRequest"},
|
147
|
+
"output":{"shape":"GetDashboardEmbedUrlResponse"},
|
148
|
+
"errors":[
|
149
|
+
{"shape":"AccessDeniedException"},
|
150
|
+
{"shape":"InvalidParameterValueException"},
|
151
|
+
{"shape":"ResourceExistsException"},
|
152
|
+
{"shape":"ResourceNotFoundException"},
|
153
|
+
{"shape":"ThrottlingException"},
|
154
|
+
{"shape":"PreconditionNotMetException"},
|
155
|
+
{"shape":"DomainNotWhitelistedException"},
|
156
|
+
{"shape":"QuickSightUserNotFoundException"},
|
157
|
+
{"shape":"IdentityTypeNotSupportedException"},
|
158
|
+
{"shape":"SessionLifetimeInMinutesInvalidException"},
|
159
|
+
{"shape":"UnsupportedUserEditionException"},
|
160
|
+
{"shape":"InternalFailureException"},
|
161
|
+
{"shape":"ResourceUnavailableException"}
|
162
|
+
]
|
163
|
+
},
|
164
|
+
"ListGroupMemberships":{
|
165
|
+
"name":"ListGroupMemberships",
|
166
|
+
"http":{
|
167
|
+
"method":"GET",
|
168
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members"
|
169
|
+
},
|
170
|
+
"input":{"shape":"ListGroupMembershipsRequest"},
|
171
|
+
"output":{"shape":"ListGroupMembershipsResponse"},
|
172
|
+
"errors":[
|
173
|
+
{"shape":"AccessDeniedException"},
|
174
|
+
{"shape":"InvalidParameterValueException"},
|
175
|
+
{"shape":"ResourceNotFoundException"},
|
176
|
+
{"shape":"ThrottlingException"},
|
177
|
+
{"shape":"InvalidNextTokenException"},
|
178
|
+
{"shape":"PreconditionNotMetException"},
|
179
|
+
{"shape":"InternalFailureException"},
|
180
|
+
{"shape":"ResourceUnavailableException"}
|
181
|
+
]
|
182
|
+
},
|
183
|
+
"ListGroups":{
|
184
|
+
"name":"ListGroups",
|
185
|
+
"http":{
|
186
|
+
"method":"GET",
|
187
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"
|
188
|
+
},
|
189
|
+
"input":{"shape":"ListGroupsRequest"},
|
190
|
+
"output":{"shape":"ListGroupsResponse"},
|
191
|
+
"errors":[
|
192
|
+
{"shape":"AccessDeniedException"},
|
193
|
+
{"shape":"InvalidParameterValueException"},
|
194
|
+
{"shape":"ResourceNotFoundException"},
|
195
|
+
{"shape":"ThrottlingException"},
|
196
|
+
{"shape":"InvalidNextTokenException"},
|
197
|
+
{"shape":"PreconditionNotMetException"},
|
198
|
+
{"shape":"InternalFailureException"},
|
199
|
+
{"shape":"ResourceUnavailableException"}
|
200
|
+
]
|
201
|
+
},
|
202
|
+
"ListUserGroups":{
|
203
|
+
"name":"ListUserGroups",
|
204
|
+
"http":{
|
205
|
+
"method":"GET",
|
206
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/groups"
|
207
|
+
},
|
208
|
+
"input":{"shape":"ListUserGroupsRequest"},
|
209
|
+
"output":{"shape":"ListUserGroupsResponse"},
|
210
|
+
"errors":[
|
211
|
+
{"shape":"AccessDeniedException"},
|
212
|
+
{"shape":"InvalidParameterValueException"},
|
213
|
+
{"shape":"ResourceNotFoundException"},
|
214
|
+
{"shape":"ThrottlingException"},
|
215
|
+
{"shape":"InternalFailureException"},
|
216
|
+
{"shape":"ResourceUnavailableException"}
|
217
|
+
]
|
218
|
+
},
|
219
|
+
"ListUsers":{
|
220
|
+
"name":"ListUsers",
|
221
|
+
"http":{
|
222
|
+
"method":"GET",
|
223
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"
|
224
|
+
},
|
225
|
+
"input":{"shape":"ListUsersRequest"},
|
226
|
+
"output":{"shape":"ListUsersResponse"},
|
227
|
+
"errors":[
|
228
|
+
{"shape":"AccessDeniedException"},
|
229
|
+
{"shape":"InvalidParameterValueException"},
|
230
|
+
{"shape":"ResourceNotFoundException"},
|
231
|
+
{"shape":"ThrottlingException"},
|
232
|
+
{"shape":"InvalidNextTokenException"},
|
233
|
+
{"shape":"InternalFailureException"},
|
234
|
+
{"shape":"ResourceUnavailableException"}
|
235
|
+
]
|
236
|
+
},
|
237
|
+
"RegisterUser":{
|
238
|
+
"name":"RegisterUser",
|
239
|
+
"http":{
|
240
|
+
"method":"POST",
|
241
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"
|
242
|
+
},
|
243
|
+
"input":{"shape":"RegisterUserRequest"},
|
244
|
+
"output":{"shape":"RegisterUserResponse"},
|
245
|
+
"errors":[
|
246
|
+
{"shape":"AccessDeniedException"},
|
247
|
+
{"shape":"InvalidParameterValueException"},
|
248
|
+
{"shape":"ResourceNotFoundException"},
|
249
|
+
{"shape":"ThrottlingException"},
|
250
|
+
{"shape":"LimitExceededException"},
|
251
|
+
{"shape":"ResourceExistsException"},
|
252
|
+
{"shape":"PreconditionNotMetException"},
|
253
|
+
{"shape":"InternalFailureException"},
|
254
|
+
{"shape":"ResourceUnavailableException"}
|
255
|
+
]
|
256
|
+
},
|
257
|
+
"UpdateGroup":{
|
258
|
+
"name":"UpdateGroup",
|
259
|
+
"http":{
|
260
|
+
"method":"PUT",
|
261
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"
|
262
|
+
},
|
263
|
+
"input":{"shape":"UpdateGroupRequest"},
|
264
|
+
"output":{"shape":"UpdateGroupResponse"},
|
265
|
+
"errors":[
|
266
|
+
{"shape":"AccessDeniedException"},
|
267
|
+
{"shape":"InvalidParameterValueException"},
|
268
|
+
{"shape":"ResourceNotFoundException"},
|
269
|
+
{"shape":"ThrottlingException"},
|
270
|
+
{"shape":"PreconditionNotMetException"},
|
271
|
+
{"shape":"InternalFailureException"},
|
272
|
+
{"shape":"ResourceUnavailableException"}
|
273
|
+
]
|
274
|
+
},
|
275
|
+
"UpdateUser":{
|
276
|
+
"name":"UpdateUser",
|
277
|
+
"http":{
|
278
|
+
"method":"PUT",
|
279
|
+
"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"
|
280
|
+
},
|
281
|
+
"input":{"shape":"UpdateUserRequest"},
|
282
|
+
"output":{"shape":"UpdateUserResponse"},
|
283
|
+
"errors":[
|
284
|
+
{"shape":"AccessDeniedException"},
|
285
|
+
{"shape":"InvalidParameterValueException"},
|
286
|
+
{"shape":"ResourceNotFoundException"},
|
287
|
+
{"shape":"ThrottlingException"},
|
288
|
+
{"shape":"InternalFailureException"},
|
289
|
+
{"shape":"ResourceUnavailableException"}
|
290
|
+
]
|
291
|
+
}
|
292
|
+
},
|
293
|
+
"shapes":{
|
294
|
+
"AccessDeniedException":{
|
295
|
+
"type":"structure",
|
296
|
+
"members":{
|
297
|
+
"Message":{"shape":"String"},
|
298
|
+
"RequestId":{"shape":"String"}
|
299
|
+
},
|
300
|
+
"error":{"httpStatusCode":401},
|
301
|
+
"exception":true
|
302
|
+
},
|
303
|
+
"Arn":{"type":"string"},
|
304
|
+
"AwsAccountId":{
|
305
|
+
"type":"string",
|
306
|
+
"max":12,
|
307
|
+
"min":12,
|
308
|
+
"pattern":"^[0-9]{12}$"
|
309
|
+
},
|
310
|
+
"Boolean":{"type":"boolean"},
|
311
|
+
"CreateGroupMembershipRequest":{
|
312
|
+
"type":"structure",
|
313
|
+
"required":[
|
314
|
+
"MemberName",
|
315
|
+
"GroupName",
|
316
|
+
"AwsAccountId",
|
317
|
+
"Namespace"
|
318
|
+
],
|
319
|
+
"members":{
|
320
|
+
"MemberName":{
|
321
|
+
"shape":"GroupMemberName",
|
322
|
+
"location":"uri",
|
323
|
+
"locationName":"MemberName"
|
324
|
+
},
|
325
|
+
"GroupName":{
|
326
|
+
"shape":"GroupName",
|
327
|
+
"location":"uri",
|
328
|
+
"locationName":"GroupName"
|
329
|
+
},
|
330
|
+
"AwsAccountId":{
|
331
|
+
"shape":"AwsAccountId",
|
332
|
+
"location":"uri",
|
333
|
+
"locationName":"AwsAccountId"
|
334
|
+
},
|
335
|
+
"Namespace":{
|
336
|
+
"shape":"Namespace",
|
337
|
+
"location":"uri",
|
338
|
+
"locationName":"Namespace"
|
339
|
+
}
|
340
|
+
}
|
341
|
+
},
|
342
|
+
"CreateGroupMembershipResponse":{
|
343
|
+
"type":"structure",
|
344
|
+
"members":{
|
345
|
+
"GroupMember":{"shape":"GroupMember"},
|
346
|
+
"RequestId":{"shape":"String"},
|
347
|
+
"Status":{
|
348
|
+
"shape":"StatusCode",
|
349
|
+
"location":"statusCode"
|
350
|
+
}
|
351
|
+
}
|
352
|
+
},
|
353
|
+
"CreateGroupRequest":{
|
354
|
+
"type":"structure",
|
355
|
+
"required":[
|
356
|
+
"GroupName",
|
357
|
+
"AwsAccountId",
|
358
|
+
"Namespace"
|
359
|
+
],
|
360
|
+
"members":{
|
361
|
+
"GroupName":{"shape":"GroupName"},
|
362
|
+
"Description":{"shape":"GroupDescription"},
|
363
|
+
"AwsAccountId":{
|
364
|
+
"shape":"AwsAccountId",
|
365
|
+
"location":"uri",
|
366
|
+
"locationName":"AwsAccountId"
|
367
|
+
},
|
368
|
+
"Namespace":{
|
369
|
+
"shape":"Namespace",
|
370
|
+
"location":"uri",
|
371
|
+
"locationName":"Namespace"
|
372
|
+
}
|
373
|
+
}
|
374
|
+
},
|
375
|
+
"CreateGroupResponse":{
|
376
|
+
"type":"structure",
|
377
|
+
"members":{
|
378
|
+
"Group":{"shape":"Group"},
|
379
|
+
"RequestId":{"shape":"String"},
|
380
|
+
"Status":{
|
381
|
+
"shape":"StatusCode",
|
382
|
+
"location":"statusCode"
|
383
|
+
}
|
384
|
+
}
|
385
|
+
},
|
386
|
+
"DeleteGroupMembershipRequest":{
|
387
|
+
"type":"structure",
|
388
|
+
"required":[
|
389
|
+
"MemberName",
|
390
|
+
"GroupName",
|
391
|
+
"AwsAccountId",
|
392
|
+
"Namespace"
|
393
|
+
],
|
394
|
+
"members":{
|
395
|
+
"MemberName":{
|
396
|
+
"shape":"GroupMemberName",
|
397
|
+
"location":"uri",
|
398
|
+
"locationName":"MemberName"
|
399
|
+
},
|
400
|
+
"GroupName":{
|
401
|
+
"shape":"GroupName",
|
402
|
+
"location":"uri",
|
403
|
+
"locationName":"GroupName"
|
404
|
+
},
|
405
|
+
"AwsAccountId":{
|
406
|
+
"shape":"AwsAccountId",
|
407
|
+
"location":"uri",
|
408
|
+
"locationName":"AwsAccountId"
|
409
|
+
},
|
410
|
+
"Namespace":{
|
411
|
+
"shape":"Namespace",
|
412
|
+
"location":"uri",
|
413
|
+
"locationName":"Namespace"
|
414
|
+
}
|
415
|
+
}
|
416
|
+
},
|
417
|
+
"DeleteGroupMembershipResponse":{
|
418
|
+
"type":"structure",
|
419
|
+
"members":{
|
420
|
+
"RequestId":{"shape":"String"},
|
421
|
+
"Status":{
|
422
|
+
"shape":"StatusCode",
|
423
|
+
"location":"statusCode"
|
424
|
+
}
|
425
|
+
}
|
426
|
+
},
|
427
|
+
"DeleteGroupRequest":{
|
428
|
+
"type":"structure",
|
429
|
+
"required":[
|
430
|
+
"GroupName",
|
431
|
+
"AwsAccountId",
|
432
|
+
"Namespace"
|
433
|
+
],
|
434
|
+
"members":{
|
435
|
+
"GroupName":{
|
436
|
+
"shape":"GroupName",
|
437
|
+
"location":"uri",
|
438
|
+
"locationName":"GroupName"
|
439
|
+
},
|
440
|
+
"AwsAccountId":{
|
441
|
+
"shape":"AwsAccountId",
|
442
|
+
"location":"uri",
|
443
|
+
"locationName":"AwsAccountId"
|
444
|
+
},
|
445
|
+
"Namespace":{
|
446
|
+
"shape":"Namespace",
|
447
|
+
"location":"uri",
|
448
|
+
"locationName":"Namespace"
|
449
|
+
}
|
450
|
+
}
|
451
|
+
},
|
452
|
+
"DeleteGroupResponse":{
|
453
|
+
"type":"structure",
|
454
|
+
"members":{
|
455
|
+
"RequestId":{"shape":"String"},
|
456
|
+
"Status":{
|
457
|
+
"shape":"StatusCode",
|
458
|
+
"location":"statusCode"
|
459
|
+
}
|
460
|
+
}
|
461
|
+
},
|
462
|
+
"DeleteUserRequest":{
|
463
|
+
"type":"structure",
|
464
|
+
"required":[
|
465
|
+
"UserName",
|
466
|
+
"AwsAccountId",
|
467
|
+
"Namespace"
|
468
|
+
],
|
469
|
+
"members":{
|
470
|
+
"UserName":{
|
471
|
+
"shape":"UserName",
|
472
|
+
"location":"uri",
|
473
|
+
"locationName":"UserName"
|
474
|
+
},
|
475
|
+
"AwsAccountId":{
|
476
|
+
"shape":"AwsAccountId",
|
477
|
+
"location":"uri",
|
478
|
+
"locationName":"AwsAccountId"
|
479
|
+
},
|
480
|
+
"Namespace":{
|
481
|
+
"shape":"Namespace",
|
482
|
+
"location":"uri",
|
483
|
+
"locationName":"Namespace"
|
484
|
+
}
|
485
|
+
}
|
486
|
+
},
|
487
|
+
"DeleteUserResponse":{
|
488
|
+
"type":"structure",
|
489
|
+
"members":{
|
490
|
+
"RequestId":{"shape":"String"},
|
491
|
+
"Status":{
|
492
|
+
"shape":"StatusCode",
|
493
|
+
"location":"statusCode"
|
494
|
+
}
|
495
|
+
}
|
496
|
+
},
|
497
|
+
"DescribeGroupRequest":{
|
498
|
+
"type":"structure",
|
499
|
+
"required":[
|
500
|
+
"GroupName",
|
501
|
+
"AwsAccountId",
|
502
|
+
"Namespace"
|
503
|
+
],
|
504
|
+
"members":{
|
505
|
+
"GroupName":{
|
506
|
+
"shape":"GroupName",
|
507
|
+
"location":"uri",
|
508
|
+
"locationName":"GroupName"
|
509
|
+
},
|
510
|
+
"AwsAccountId":{
|
511
|
+
"shape":"AwsAccountId",
|
512
|
+
"location":"uri",
|
513
|
+
"locationName":"AwsAccountId"
|
514
|
+
},
|
515
|
+
"Namespace":{
|
516
|
+
"shape":"Namespace",
|
517
|
+
"location":"uri",
|
518
|
+
"locationName":"Namespace"
|
519
|
+
}
|
520
|
+
}
|
521
|
+
},
|
522
|
+
"DescribeGroupResponse":{
|
523
|
+
"type":"structure",
|
524
|
+
"members":{
|
525
|
+
"Group":{"shape":"Group"},
|
526
|
+
"RequestId":{"shape":"String"},
|
527
|
+
"Status":{
|
528
|
+
"shape":"StatusCode",
|
529
|
+
"location":"statusCode"
|
530
|
+
}
|
531
|
+
}
|
532
|
+
},
|
533
|
+
"DescribeUserRequest":{
|
534
|
+
"type":"structure",
|
535
|
+
"required":[
|
536
|
+
"UserName",
|
537
|
+
"AwsAccountId",
|
538
|
+
"Namespace"
|
539
|
+
],
|
540
|
+
"members":{
|
541
|
+
"UserName":{
|
542
|
+
"shape":"UserName",
|
543
|
+
"location":"uri",
|
544
|
+
"locationName":"UserName"
|
545
|
+
},
|
546
|
+
"AwsAccountId":{
|
547
|
+
"shape":"AwsAccountId",
|
548
|
+
"location":"uri",
|
549
|
+
"locationName":"AwsAccountId"
|
550
|
+
},
|
551
|
+
"Namespace":{
|
552
|
+
"shape":"Namespace",
|
553
|
+
"location":"uri",
|
554
|
+
"locationName":"Namespace"
|
555
|
+
}
|
556
|
+
}
|
557
|
+
},
|
558
|
+
"DescribeUserResponse":{
|
559
|
+
"type":"structure",
|
560
|
+
"members":{
|
561
|
+
"User":{"shape":"User"},
|
562
|
+
"RequestId":{"shape":"String"},
|
563
|
+
"Status":{
|
564
|
+
"shape":"StatusCode",
|
565
|
+
"location":"statusCode"
|
566
|
+
}
|
567
|
+
}
|
568
|
+
},
|
569
|
+
"DomainNotWhitelistedException":{
|
570
|
+
"type":"structure",
|
571
|
+
"members":{
|
572
|
+
"Message":{"shape":"String"},
|
573
|
+
"RequestId":{"shape":"String"}
|
574
|
+
},
|
575
|
+
"error":{"httpStatusCode":407},
|
576
|
+
"exception":true
|
577
|
+
},
|
578
|
+
"EmbeddingUrl":{
|
579
|
+
"type":"string",
|
580
|
+
"sensitive":true
|
581
|
+
},
|
582
|
+
"ExceptionResourceType":{
|
583
|
+
"type":"string",
|
584
|
+
"enum":[
|
585
|
+
"USER",
|
586
|
+
"GROUP",
|
587
|
+
"NAMESPACE",
|
588
|
+
"DATA_SOURCE",
|
589
|
+
"DATA_SET",
|
590
|
+
"VPC_CONNECTION",
|
591
|
+
"INGESTION"
|
592
|
+
]
|
593
|
+
},
|
594
|
+
"GetDashboardEmbedUrlRequest":{
|
595
|
+
"type":"structure",
|
596
|
+
"required":[
|
597
|
+
"AwsAccountId",
|
598
|
+
"DashboardId",
|
599
|
+
"IdentityType"
|
600
|
+
],
|
601
|
+
"members":{
|
602
|
+
"AwsAccountId":{
|
603
|
+
"shape":"AwsAccountId",
|
604
|
+
"location":"uri",
|
605
|
+
"locationName":"AwsAccountId"
|
606
|
+
},
|
607
|
+
"DashboardId":{
|
608
|
+
"shape":"String",
|
609
|
+
"location":"uri",
|
610
|
+
"locationName":"DashboardId"
|
611
|
+
},
|
612
|
+
"IdentityType":{
|
613
|
+
"shape":"IdentityType",
|
614
|
+
"location":"querystring",
|
615
|
+
"locationName":"creds-type"
|
616
|
+
},
|
617
|
+
"SessionLifetimeInMinutes":{
|
618
|
+
"shape":"SessionLifetimeInMinutes",
|
619
|
+
"location":"querystring",
|
620
|
+
"locationName":"session-lifetime"
|
621
|
+
},
|
622
|
+
"UndoRedoDisabled":{
|
623
|
+
"shape":"boolean",
|
624
|
+
"location":"querystring",
|
625
|
+
"locationName":"undo-redo-disabled"
|
626
|
+
},
|
627
|
+
"ResetDisabled":{
|
628
|
+
"shape":"boolean",
|
629
|
+
"location":"querystring",
|
630
|
+
"locationName":"reset-disabled"
|
631
|
+
}
|
632
|
+
}
|
633
|
+
},
|
634
|
+
"GetDashboardEmbedUrlResponse":{
|
635
|
+
"type":"structure",
|
636
|
+
"members":{
|
637
|
+
"EmbedUrl":{"shape":"EmbeddingUrl"},
|
638
|
+
"Status":{
|
639
|
+
"shape":"StatusCode",
|
640
|
+
"location":"statusCode"
|
641
|
+
},
|
642
|
+
"RequestId":{"shape":"String"}
|
643
|
+
}
|
644
|
+
},
|
645
|
+
"Group":{
|
646
|
+
"type":"structure",
|
647
|
+
"members":{
|
648
|
+
"Arn":{"shape":"Arn"},
|
649
|
+
"GroupName":{"shape":"GroupName"},
|
650
|
+
"Description":{"shape":"GroupDescription"}
|
651
|
+
}
|
652
|
+
},
|
653
|
+
"GroupDescription":{
|
654
|
+
"type":"string",
|
655
|
+
"max":512,
|
656
|
+
"min":1
|
657
|
+
},
|
658
|
+
"GroupList":{
|
659
|
+
"type":"list",
|
660
|
+
"member":{"shape":"Group"}
|
661
|
+
},
|
662
|
+
"GroupMember":{
|
663
|
+
"type":"structure",
|
664
|
+
"members":{
|
665
|
+
"Arn":{"shape":"Arn"},
|
666
|
+
"MemberName":{"shape":"GroupMemberName"}
|
667
|
+
}
|
668
|
+
},
|
669
|
+
"GroupMemberList":{
|
670
|
+
"type":"list",
|
671
|
+
"member":{"shape":"GroupMember"}
|
672
|
+
},
|
673
|
+
"GroupMemberName":{
|
674
|
+
"type":"string",
|
675
|
+
"max":256,
|
676
|
+
"min":1,
|
677
|
+
"pattern":"[\\u0020-\\u00FF]+"
|
678
|
+
},
|
679
|
+
"GroupName":{
|
680
|
+
"type":"string",
|
681
|
+
"min":1,
|
682
|
+
"pattern":"[\\u0020-\\u00FF]+"
|
683
|
+
},
|
684
|
+
"IdentityType":{
|
685
|
+
"type":"string",
|
686
|
+
"enum":[
|
687
|
+
"IAM",
|
688
|
+
"QUICKSIGHT"
|
689
|
+
]
|
690
|
+
},
|
691
|
+
"IdentityTypeNotSupportedException":{
|
692
|
+
"type":"structure",
|
693
|
+
"members":{
|
694
|
+
"Message":{"shape":"String"},
|
695
|
+
"RequestId":{"shape":"String"}
|
696
|
+
},
|
697
|
+
"error":{"httpStatusCode":416},
|
698
|
+
"exception":true
|
699
|
+
},
|
700
|
+
"InternalFailureException":{
|
701
|
+
"type":"structure",
|
702
|
+
"members":{
|
703
|
+
"Message":{"shape":"String"},
|
704
|
+
"RequestId":{"shape":"String"}
|
705
|
+
},
|
706
|
+
"error":{"httpStatusCode":500},
|
707
|
+
"exception":true,
|
708
|
+
"fault":true
|
709
|
+
},
|
710
|
+
"InvalidNextTokenException":{
|
711
|
+
"type":"structure",
|
712
|
+
"members":{
|
713
|
+
"Message":{"shape":"String"},
|
714
|
+
"RequestId":{"shape":"String"}
|
715
|
+
},
|
716
|
+
"error":{"httpStatusCode":400},
|
717
|
+
"exception":true
|
718
|
+
},
|
719
|
+
"InvalidParameterValueException":{
|
720
|
+
"type":"structure",
|
721
|
+
"members":{
|
722
|
+
"Message":{"shape":"String"},
|
723
|
+
"RequestId":{"shape":"String"}
|
724
|
+
},
|
725
|
+
"error":{"httpStatusCode":400},
|
726
|
+
"exception":true
|
727
|
+
},
|
728
|
+
"LimitExceededException":{
|
729
|
+
"type":"structure",
|
730
|
+
"members":{
|
731
|
+
"Message":{"shape":"String"},
|
732
|
+
"ResourceType":{"shape":"ExceptionResourceType"},
|
733
|
+
"RequestId":{"shape":"String"}
|
734
|
+
},
|
735
|
+
"error":{"httpStatusCode":409},
|
736
|
+
"exception":true
|
737
|
+
},
|
738
|
+
"ListGroupMembershipsRequest":{
|
739
|
+
"type":"structure",
|
740
|
+
"required":[
|
741
|
+
"GroupName",
|
742
|
+
"AwsAccountId",
|
743
|
+
"Namespace"
|
744
|
+
],
|
745
|
+
"members":{
|
746
|
+
"GroupName":{
|
747
|
+
"shape":"GroupName",
|
748
|
+
"location":"uri",
|
749
|
+
"locationName":"GroupName"
|
750
|
+
},
|
751
|
+
"NextToken":{
|
752
|
+
"shape":"String",
|
753
|
+
"location":"querystring",
|
754
|
+
"locationName":"next-token"
|
755
|
+
},
|
756
|
+
"MaxResults":{
|
757
|
+
"shape":"MaxResults",
|
758
|
+
"box":true,
|
759
|
+
"location":"querystring",
|
760
|
+
"locationName":"max-results"
|
761
|
+
},
|
762
|
+
"AwsAccountId":{
|
763
|
+
"shape":"AwsAccountId",
|
764
|
+
"location":"uri",
|
765
|
+
"locationName":"AwsAccountId"
|
766
|
+
},
|
767
|
+
"Namespace":{
|
768
|
+
"shape":"Namespace",
|
769
|
+
"location":"uri",
|
770
|
+
"locationName":"Namespace"
|
771
|
+
}
|
772
|
+
}
|
773
|
+
},
|
774
|
+
"ListGroupMembershipsResponse":{
|
775
|
+
"type":"structure",
|
776
|
+
"members":{
|
777
|
+
"GroupMemberList":{"shape":"GroupMemberList"},
|
778
|
+
"NextToken":{"shape":"String"},
|
779
|
+
"RequestId":{"shape":"String"},
|
780
|
+
"Status":{
|
781
|
+
"shape":"StatusCode",
|
782
|
+
"location":"statusCode"
|
783
|
+
}
|
784
|
+
}
|
785
|
+
},
|
786
|
+
"ListGroupsRequest":{
|
787
|
+
"type":"structure",
|
788
|
+
"required":[
|
789
|
+
"AwsAccountId",
|
790
|
+
"Namespace"
|
791
|
+
],
|
792
|
+
"members":{
|
793
|
+
"AwsAccountId":{
|
794
|
+
"shape":"AwsAccountId",
|
795
|
+
"location":"uri",
|
796
|
+
"locationName":"AwsAccountId"
|
797
|
+
},
|
798
|
+
"NextToken":{
|
799
|
+
"shape":"String",
|
800
|
+
"location":"querystring",
|
801
|
+
"locationName":"next-token"
|
802
|
+
},
|
803
|
+
"MaxResults":{
|
804
|
+
"shape":"MaxResults",
|
805
|
+
"box":true,
|
806
|
+
"location":"querystring",
|
807
|
+
"locationName":"max-results"
|
808
|
+
},
|
809
|
+
"Namespace":{
|
810
|
+
"shape":"Namespace",
|
811
|
+
"location":"uri",
|
812
|
+
"locationName":"Namespace"
|
813
|
+
}
|
814
|
+
}
|
815
|
+
},
|
816
|
+
"ListGroupsResponse":{
|
817
|
+
"type":"structure",
|
818
|
+
"members":{
|
819
|
+
"GroupList":{"shape":"GroupList"},
|
820
|
+
"NextToken":{"shape":"String"},
|
821
|
+
"RequestId":{"shape":"String"},
|
822
|
+
"Status":{
|
823
|
+
"shape":"StatusCode",
|
824
|
+
"location":"statusCode"
|
825
|
+
}
|
826
|
+
}
|
827
|
+
},
|
828
|
+
"ListUserGroupsRequest":{
|
829
|
+
"type":"structure",
|
830
|
+
"required":[
|
831
|
+
"UserName",
|
832
|
+
"AwsAccountId",
|
833
|
+
"Namespace"
|
834
|
+
],
|
835
|
+
"members":{
|
836
|
+
"UserName":{
|
837
|
+
"shape":"UserName",
|
838
|
+
"location":"uri",
|
839
|
+
"locationName":"UserName"
|
840
|
+
},
|
841
|
+
"AwsAccountId":{
|
842
|
+
"shape":"AwsAccountId",
|
843
|
+
"location":"uri",
|
844
|
+
"locationName":"AwsAccountId"
|
845
|
+
},
|
846
|
+
"Namespace":{
|
847
|
+
"shape":"Namespace",
|
848
|
+
"location":"uri",
|
849
|
+
"locationName":"Namespace"
|
850
|
+
},
|
851
|
+
"NextToken":{
|
852
|
+
"shape":"String",
|
853
|
+
"location":"querystring",
|
854
|
+
"locationName":"next-token"
|
855
|
+
},
|
856
|
+
"MaxResults":{
|
857
|
+
"shape":"MaxResults",
|
858
|
+
"box":true,
|
859
|
+
"location":"querystring",
|
860
|
+
"locationName":"max-results"
|
861
|
+
}
|
862
|
+
}
|
863
|
+
},
|
864
|
+
"ListUserGroupsResponse":{
|
865
|
+
"type":"structure",
|
866
|
+
"members":{
|
867
|
+
"GroupList":{"shape":"GroupList"},
|
868
|
+
"NextToken":{"shape":"String"},
|
869
|
+
"RequestId":{"shape":"String"},
|
870
|
+
"Status":{
|
871
|
+
"shape":"StatusCode",
|
872
|
+
"location":"statusCode"
|
873
|
+
}
|
874
|
+
}
|
875
|
+
},
|
876
|
+
"ListUsersRequest":{
|
877
|
+
"type":"structure",
|
878
|
+
"required":[
|
879
|
+
"AwsAccountId",
|
880
|
+
"Namespace"
|
881
|
+
],
|
882
|
+
"members":{
|
883
|
+
"AwsAccountId":{
|
884
|
+
"shape":"AwsAccountId",
|
885
|
+
"location":"uri",
|
886
|
+
"locationName":"AwsAccountId"
|
887
|
+
},
|
888
|
+
"NextToken":{
|
889
|
+
"shape":"String",
|
890
|
+
"location":"querystring",
|
891
|
+
"locationName":"next-token"
|
892
|
+
},
|
893
|
+
"MaxResults":{
|
894
|
+
"shape":"MaxResults",
|
895
|
+
"box":true,
|
896
|
+
"location":"querystring",
|
897
|
+
"locationName":"max-results"
|
898
|
+
},
|
899
|
+
"Namespace":{
|
900
|
+
"shape":"Namespace",
|
901
|
+
"location":"uri",
|
902
|
+
"locationName":"Namespace"
|
903
|
+
}
|
904
|
+
}
|
905
|
+
},
|
906
|
+
"ListUsersResponse":{
|
907
|
+
"type":"structure",
|
908
|
+
"members":{
|
909
|
+
"UserList":{"shape":"UserList"},
|
910
|
+
"NextToken":{"shape":"String"},
|
911
|
+
"RequestId":{"shape":"String"},
|
912
|
+
"Status":{
|
913
|
+
"shape":"StatusCode",
|
914
|
+
"location":"statusCode"
|
915
|
+
}
|
916
|
+
}
|
917
|
+
},
|
918
|
+
"MaxResults":{
|
919
|
+
"type":"integer",
|
920
|
+
"max":100000,
|
921
|
+
"min":1
|
922
|
+
},
|
923
|
+
"Namespace":{
|
924
|
+
"type":"string",
|
925
|
+
"pattern":"default"
|
926
|
+
},
|
927
|
+
"PreconditionNotMetException":{
|
928
|
+
"type":"structure",
|
929
|
+
"members":{
|
930
|
+
"Message":{"shape":"String"},
|
931
|
+
"RequestId":{"shape":"String"}
|
932
|
+
},
|
933
|
+
"error":{"httpStatusCode":400},
|
934
|
+
"exception":true
|
935
|
+
},
|
936
|
+
"QuickSightUserNotFoundException":{
|
937
|
+
"type":"structure",
|
938
|
+
"members":{
|
939
|
+
"Message":{"shape":"String"},
|
940
|
+
"RequestId":{"shape":"String"}
|
941
|
+
},
|
942
|
+
"error":{"httpStatusCode":412},
|
943
|
+
"exception":true
|
944
|
+
},
|
945
|
+
"RegisterUserRequest":{
|
946
|
+
"type":"structure",
|
947
|
+
"required":[
|
948
|
+
"IdentityType",
|
949
|
+
"Email",
|
950
|
+
"UserRole",
|
951
|
+
"AwsAccountId",
|
952
|
+
"Namespace"
|
953
|
+
],
|
954
|
+
"members":{
|
955
|
+
"IdentityType":{"shape":"IdentityType"},
|
956
|
+
"Email":{"shape":"String"},
|
957
|
+
"UserRole":{"shape":"UserRole"},
|
958
|
+
"IamArn":{"shape":"String"},
|
959
|
+
"SessionName":{"shape":"String"},
|
960
|
+
"AwsAccountId":{
|
961
|
+
"shape":"AwsAccountId",
|
962
|
+
"location":"uri",
|
963
|
+
"locationName":"AwsAccountId"
|
964
|
+
},
|
965
|
+
"Namespace":{
|
966
|
+
"shape":"Namespace",
|
967
|
+
"location":"uri",
|
968
|
+
"locationName":"Namespace"
|
969
|
+
},
|
970
|
+
"UserName":{"shape":"UserName"}
|
971
|
+
}
|
972
|
+
},
|
973
|
+
"RegisterUserResponse":{
|
974
|
+
"type":"structure",
|
975
|
+
"members":{
|
976
|
+
"User":{"shape":"User"},
|
977
|
+
"RequestId":{"shape":"String"},
|
978
|
+
"Status":{
|
979
|
+
"shape":"StatusCode",
|
980
|
+
"location":"statusCode"
|
981
|
+
}
|
982
|
+
}
|
983
|
+
},
|
984
|
+
"ResourceExistsException":{
|
985
|
+
"type":"structure",
|
986
|
+
"members":{
|
987
|
+
"Message":{"shape":"String"},
|
988
|
+
"ResourceType":{"shape":"ExceptionResourceType"},
|
989
|
+
"RequestId":{"shape":"String"}
|
990
|
+
},
|
991
|
+
"error":{"httpStatusCode":409},
|
992
|
+
"exception":true
|
993
|
+
},
|
994
|
+
"ResourceNotFoundException":{
|
995
|
+
"type":"structure",
|
996
|
+
"members":{
|
997
|
+
"Message":{"shape":"String"},
|
998
|
+
"ResourceType":{"shape":"ExceptionResourceType"},
|
999
|
+
"RequestId":{"shape":"String"}
|
1000
|
+
},
|
1001
|
+
"error":{"httpStatusCode":404},
|
1002
|
+
"exception":true
|
1003
|
+
},
|
1004
|
+
"ResourceUnavailableException":{
|
1005
|
+
"type":"structure",
|
1006
|
+
"members":{
|
1007
|
+
"Message":{"shape":"String"},
|
1008
|
+
"ResourceType":{"shape":"ExceptionResourceType"},
|
1009
|
+
"RequestId":{"shape":"String"}
|
1010
|
+
},
|
1011
|
+
"error":{"httpStatusCode":503},
|
1012
|
+
"exception":true
|
1013
|
+
},
|
1014
|
+
"SessionLifetimeInMinutes":{
|
1015
|
+
"type":"long",
|
1016
|
+
"max":600,
|
1017
|
+
"min":15
|
1018
|
+
},
|
1019
|
+
"SessionLifetimeInMinutesInvalidException":{
|
1020
|
+
"type":"structure",
|
1021
|
+
"members":{
|
1022
|
+
"Message":{"shape":"String"},
|
1023
|
+
"RequestId":{"shape":"String"}
|
1024
|
+
},
|
1025
|
+
"error":{"httpStatusCode":418},
|
1026
|
+
"exception":true
|
1027
|
+
},
|
1028
|
+
"StatusCode":{"type":"integer"},
|
1029
|
+
"String":{"type":"string"},
|
1030
|
+
"ThrottlingException":{
|
1031
|
+
"type":"structure",
|
1032
|
+
"members":{
|
1033
|
+
"Message":{"shape":"String"},
|
1034
|
+
"RequestId":{"shape":"String"}
|
1035
|
+
},
|
1036
|
+
"error":{"httpStatusCode":429},
|
1037
|
+
"exception":true
|
1038
|
+
},
|
1039
|
+
"UnsupportedUserEditionException":{
|
1040
|
+
"type":"structure",
|
1041
|
+
"members":{
|
1042
|
+
"Message":{"shape":"String"},
|
1043
|
+
"RequestId":{"shape":"String"}
|
1044
|
+
},
|
1045
|
+
"error":{"httpStatusCode":419},
|
1046
|
+
"exception":true
|
1047
|
+
},
|
1048
|
+
"UpdateGroupRequest":{
|
1049
|
+
"type":"structure",
|
1050
|
+
"required":[
|
1051
|
+
"GroupName",
|
1052
|
+
"AwsAccountId",
|
1053
|
+
"Namespace"
|
1054
|
+
],
|
1055
|
+
"members":{
|
1056
|
+
"GroupName":{
|
1057
|
+
"shape":"GroupName",
|
1058
|
+
"location":"uri",
|
1059
|
+
"locationName":"GroupName"
|
1060
|
+
},
|
1061
|
+
"Description":{"shape":"GroupDescription"},
|
1062
|
+
"AwsAccountId":{
|
1063
|
+
"shape":"AwsAccountId",
|
1064
|
+
"location":"uri",
|
1065
|
+
"locationName":"AwsAccountId"
|
1066
|
+
},
|
1067
|
+
"Namespace":{
|
1068
|
+
"shape":"Namespace",
|
1069
|
+
"location":"uri",
|
1070
|
+
"locationName":"Namespace"
|
1071
|
+
}
|
1072
|
+
}
|
1073
|
+
},
|
1074
|
+
"UpdateGroupResponse":{
|
1075
|
+
"type":"structure",
|
1076
|
+
"members":{
|
1077
|
+
"Group":{"shape":"Group"},
|
1078
|
+
"RequestId":{"shape":"String"},
|
1079
|
+
"Status":{
|
1080
|
+
"shape":"StatusCode",
|
1081
|
+
"location":"statusCode"
|
1082
|
+
}
|
1083
|
+
}
|
1084
|
+
},
|
1085
|
+
"UpdateUserRequest":{
|
1086
|
+
"type":"structure",
|
1087
|
+
"required":[
|
1088
|
+
"UserName",
|
1089
|
+
"AwsAccountId",
|
1090
|
+
"Namespace",
|
1091
|
+
"Email",
|
1092
|
+
"Role"
|
1093
|
+
],
|
1094
|
+
"members":{
|
1095
|
+
"UserName":{
|
1096
|
+
"shape":"UserName",
|
1097
|
+
"location":"uri",
|
1098
|
+
"locationName":"UserName"
|
1099
|
+
},
|
1100
|
+
"AwsAccountId":{
|
1101
|
+
"shape":"AwsAccountId",
|
1102
|
+
"location":"uri",
|
1103
|
+
"locationName":"AwsAccountId"
|
1104
|
+
},
|
1105
|
+
"Namespace":{
|
1106
|
+
"shape":"Namespace",
|
1107
|
+
"location":"uri",
|
1108
|
+
"locationName":"Namespace"
|
1109
|
+
},
|
1110
|
+
"Email":{"shape":"String"},
|
1111
|
+
"Role":{"shape":"UserRole"}
|
1112
|
+
}
|
1113
|
+
},
|
1114
|
+
"UpdateUserResponse":{
|
1115
|
+
"type":"structure",
|
1116
|
+
"members":{
|
1117
|
+
"User":{"shape":"User"},
|
1118
|
+
"RequestId":{"shape":"String"},
|
1119
|
+
"Status":{
|
1120
|
+
"shape":"StatusCode",
|
1121
|
+
"location":"statusCode"
|
1122
|
+
}
|
1123
|
+
}
|
1124
|
+
},
|
1125
|
+
"User":{
|
1126
|
+
"type":"structure",
|
1127
|
+
"members":{
|
1128
|
+
"Arn":{"shape":"Arn"},
|
1129
|
+
"UserName":{"shape":"UserName"},
|
1130
|
+
"Email":{"shape":"String"},
|
1131
|
+
"Role":{"shape":"UserRole"},
|
1132
|
+
"IdentityType":{"shape":"IdentityType"},
|
1133
|
+
"Active":{"shape":"Boolean"}
|
1134
|
+
}
|
1135
|
+
},
|
1136
|
+
"UserList":{
|
1137
|
+
"type":"list",
|
1138
|
+
"member":{"shape":"User"}
|
1139
|
+
},
|
1140
|
+
"UserName":{
|
1141
|
+
"type":"string",
|
1142
|
+
"min":1,
|
1143
|
+
"pattern":"[\\u0020-\\u00FF]+"
|
1144
|
+
},
|
1145
|
+
"UserRole":{
|
1146
|
+
"type":"string",
|
1147
|
+
"enum":[
|
1148
|
+
"ADMIN",
|
1149
|
+
"AUTHOR",
|
1150
|
+
"READER",
|
1151
|
+
"RESTRICTED_AUTHOR",
|
1152
|
+
"RESTRICTED_READER"
|
1153
|
+
]
|
1154
|
+
},
|
1155
|
+
"boolean":{"type":"boolean"}
|
1156
|
+
}
|
1157
|
+
}
|