aws-sdk-core 2.11.400 → 2.11.401

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.
@@ -2579,6 +2579,15 @@
2579
2579
  "input":{"shape":"ModifyInstanceEventStartTimeRequest"},
2580
2580
  "output":{"shape":"ModifyInstanceEventStartTimeResult"}
2581
2581
  },
2582
+ "ModifyInstanceMetadataOptions":{
2583
+ "name":"ModifyInstanceMetadataOptions",
2584
+ "http":{
2585
+ "method":"POST",
2586
+ "requestUri":"/"
2587
+ },
2588
+ "input":{"shape":"ModifyInstanceMetadataOptionsRequest"},
2589
+ "output":{"shape":"ModifyInstanceMetadataOptionsResult"}
2590
+ },
2582
2591
  "ModifyInstancePlacement":{
2583
2592
  "name":"ModifyInstancePlacement",
2584
2593
  "http":{
@@ -5813,6 +5822,7 @@
5813
5822
  },
5814
5823
  "CertificateArn":{"shape":"String"},
5815
5824
  "Type":{"shape":"GatewayType"},
5825
+ "DeviceName":{"shape":"String"},
5816
5826
  "DryRun":{
5817
5827
  "shape":"Boolean",
5818
5828
  "locationName":"dryRun"
@@ -7225,6 +7235,10 @@
7225
7235
  "shape":"String",
7226
7236
  "locationName":"type"
7227
7237
  },
7238
+ "DeviceName":{
7239
+ "shape":"String",
7240
+ "locationName":"deviceName"
7241
+ },
7228
7242
  "Tags":{
7229
7243
  "shape":"TagList",
7230
7244
  "locationName":"tagSet"
@@ -13775,6 +13789,13 @@
13775
13789
  "host"
13776
13790
  ]
13777
13791
  },
13792
+ "HttpTokensState":{
13793
+ "type":"string",
13794
+ "enum":[
13795
+ "optional",
13796
+ "required"
13797
+ ]
13798
+ },
13778
13799
  "HypervisorType":{
13779
13800
  "type":"string",
13780
13801
  "enum":[
@@ -14767,6 +14788,10 @@
14767
14788
  "Licenses":{
14768
14789
  "shape":"LicenseList",
14769
14790
  "locationName":"licenseSet"
14791
+ },
14792
+ "MetadataOptions":{
14793
+ "shape":"InstanceMetadataOptionsResponse",
14794
+ "locationName":"metadataOptions"
14770
14795
  }
14771
14796
  }
14772
14797
  },
@@ -15088,6 +15113,49 @@
15088
15113
  "targeted"
15089
15114
  ]
15090
15115
  },
15116
+ "InstanceMetadataEndpointState":{
15117
+ "type":"string",
15118
+ "enum":[
15119
+ "disabled",
15120
+ "enabled"
15121
+ ]
15122
+ },
15123
+ "InstanceMetadataOptionsRequest":{
15124
+ "type":"structure",
15125
+ "members":{
15126
+ "HttpTokens":{"shape":"HttpTokensState"},
15127
+ "HttpPutResponseHopLimit":{"shape":"Integer"},
15128
+ "HttpEndpoint":{"shape":"InstanceMetadataEndpointState"}
15129
+ }
15130
+ },
15131
+ "InstanceMetadataOptionsResponse":{
15132
+ "type":"structure",
15133
+ "members":{
15134
+ "State":{
15135
+ "shape":"InstanceMetadataOptionsState",
15136
+ "locationName":"state"
15137
+ },
15138
+ "HttpTokens":{
15139
+ "shape":"HttpTokensState",
15140
+ "locationName":"httpTokens"
15141
+ },
15142
+ "HttpPutResponseHopLimit":{
15143
+ "shape":"Integer",
15144
+ "locationName":"httpPutResponseHopLimit"
15145
+ },
15146
+ "HttpEndpoint":{
15147
+ "shape":"InstanceMetadataEndpointState",
15148
+ "locationName":"httpEndpoint"
15149
+ }
15150
+ }
15151
+ },
15152
+ "InstanceMetadataOptionsState":{
15153
+ "type":"string",
15154
+ "enum":[
15155
+ "pending",
15156
+ "applied"
15157
+ ]
15158
+ },
15091
15159
  "InstanceMonitoring":{
15092
15160
  "type":"structure",
15093
15161
  "members":{
@@ -17197,6 +17265,30 @@
17197
17265
  }
17198
17266
  }
17199
17267
  },
17268
+ "ModifyInstanceMetadataOptionsRequest":{
17269
+ "type":"structure",
17270
+ "required":["InstanceId"],
17271
+ "members":{
17272
+ "InstanceId":{"shape":"String"},
17273
+ "HttpTokens":{"shape":"HttpTokensState"},
17274
+ "HttpPutResponseHopLimit":{"shape":"Integer"},
17275
+ "HttpEndpoint":{"shape":"InstanceMetadataEndpointState"},
17276
+ "DryRun":{"shape":"Boolean"}
17277
+ }
17278
+ },
17279
+ "ModifyInstanceMetadataOptionsResult":{
17280
+ "type":"structure",
17281
+ "members":{
17282
+ "InstanceId":{
17283
+ "shape":"String",
17284
+ "locationName":"instanceId"
17285
+ },
17286
+ "InstanceMetadataOptions":{
17287
+ "shape":"InstanceMetadataOptionsResponse",
17288
+ "locationName":"instanceMetadataOptions"
17289
+ }
17290
+ }
17291
+ },
17200
17292
  "ModifyInstancePlacementRequest":{
17201
17293
  "type":"structure",
17202
17294
  "required":["InstanceId"],
@@ -21188,7 +21280,8 @@
21188
21280
  "LicenseSpecifications":{
21189
21281
  "shape":"LicenseSpecificationListRequest",
21190
21282
  "locationName":"LicenseSpecification"
21191
- }
21283
+ },
21284
+ "MetadataOptions":{"shape":"InstanceMetadataOptionsRequest"}
21192
21285
  }
21193
21286
  },
21194
21287
  "RunScheduledInstancesRequest":{
@@ -73,7 +73,8 @@
73
73
  {"shape":"TooManyRegistrationsForTargetIdException"},
74
74
  {"shape":"TooManyTargetsException"},
75
75
  {"shape":"TooManyActionsException"},
76
- {"shape":"InvalidLoadBalancerActionException"}
76
+ {"shape":"InvalidLoadBalancerActionException"},
77
+ {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"}
77
78
  ]
78
79
  },
79
80
  "CreateLoadBalancer":{
@@ -127,7 +128,8 @@
127
128
  {"shape":"TooManyTargetsException"},
128
129
  {"shape":"UnsupportedProtocolException"},
129
130
  {"shape":"TooManyActionsException"},
130
- {"shape":"InvalidLoadBalancerActionException"}
131
+ {"shape":"InvalidLoadBalancerActionException"},
132
+ {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"}
131
133
  ]
132
134
  },
133
135
  "CreateTargetGroup":{
@@ -424,7 +426,8 @@
424
426
  {"shape":"TooManyRegistrationsForTargetIdException"},
425
427
  {"shape":"TooManyTargetsException"},
426
428
  {"shape":"TooManyActionsException"},
427
- {"shape":"InvalidLoadBalancerActionException"}
429
+ {"shape":"InvalidLoadBalancerActionException"},
430
+ {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"}
428
431
  ]
429
432
  },
430
433
  "ModifyLoadBalancerAttributes":{
@@ -464,7 +467,8 @@
464
467
  {"shape":"TargetGroupNotFoundException"},
465
468
  {"shape":"UnsupportedProtocolException"},
466
469
  {"shape":"TooManyActionsException"},
467
- {"shape":"InvalidLoadBalancerActionException"}
470
+ {"shape":"InvalidLoadBalancerActionException"},
471
+ {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"}
468
472
  ]
469
473
  },
470
474
  "ModifyTargetGroup":{
@@ -635,7 +639,8 @@
635
639
  "AuthenticateCognitoConfig":{"shape":"AuthenticateCognitoActionConfig"},
636
640
  "Order":{"shape":"ActionOrder"},
637
641
  "RedirectConfig":{"shape":"RedirectActionConfig"},
638
- "FixedResponseConfig":{"shape":"FixedResponseActionConfig"}
642
+ "FixedResponseConfig":{"shape":"FixedResponseActionConfig"},
643
+ "ForwardConfig":{"shape":"ForwardActionConfig"}
639
644
  }
640
645
  },
641
646
  "ActionOrder":{
@@ -1242,6 +1247,13 @@
1242
1247
  "type":"string",
1243
1248
  "pattern":"^(2|4|5)\\d\\d$"
1244
1249
  },
1250
+ "ForwardActionConfig":{
1251
+ "type":"structure",
1252
+ "members":{
1253
+ "TargetGroups":{"shape":"TargetGroupList"},
1254
+ "TargetGroupStickinessConfig":{"shape":"TargetGroupStickinessConfig"}
1255
+ }
1256
+ },
1245
1257
  "HealthCheckEnabled":{"type":"boolean"},
1246
1258
  "HealthCheckIntervalSeconds":{
1247
1259
  "type":"integer",
@@ -2106,6 +2118,10 @@
2106
2118
  "type":"list",
2107
2119
  "member":{"shape":"TargetGroupAttribute"}
2108
2120
  },
2121
+ "TargetGroupList":{
2122
+ "type":"list",
2123
+ "member":{"shape":"TargetGroupTuple"}
2124
+ },
2109
2125
  "TargetGroupName":{"type":"string"},
2110
2126
  "TargetGroupNames":{
2111
2127
  "type":"list",
@@ -2122,6 +2138,23 @@
2122
2138
  },
2123
2139
  "exception":true
2124
2140
  },
2141
+ "TargetGroupStickinessConfig":{
2142
+ "type":"structure",
2143
+ "members":{
2144
+ "Enabled":{"shape":"TargetGroupStickinessEnabled"},
2145
+ "DurationSeconds":{"shape":"TargetGroupStickinessDurationSeconds"}
2146
+ }
2147
+ },
2148
+ "TargetGroupStickinessDurationSeconds":{"type":"integer"},
2149
+ "TargetGroupStickinessEnabled":{"type":"boolean"},
2150
+ "TargetGroupTuple":{
2151
+ "type":"structure",
2152
+ "members":{
2153
+ "TargetGroupArn":{"shape":"TargetGroupArn"},
2154
+ "Weight":{"shape":"TargetGroupWeight"}
2155
+ }
2156
+ },
2157
+ "TargetGroupWeight":{"type":"integer"},
2125
2158
  "TargetGroups":{
2126
2159
  "type":"list",
2127
2160
  "member":{"shape":"TargetGroup"}
@@ -2282,6 +2315,17 @@
2282
2315
  },
2283
2316
  "exception":true
2284
2317
  },
2318
+ "TooManyUniqueTargetGroupsPerLoadBalancerException":{
2319
+ "type":"structure",
2320
+ "members":{
2321
+ },
2322
+ "error":{
2323
+ "code":"TooManyUniqueTargetGroupsPerLoadBalancer",
2324
+ "httpStatusCode":400,
2325
+ "senderFault":true
2326
+ },
2327
+ "exception":true
2328
+ },
2285
2329
  "UnsupportedProtocolException":{
2286
2330
  "type":"structure",
2287
2331
  "members":{
@@ -4588,7 +4588,8 @@
4588
4588
  "Description":{"shape":"roleDescriptionType"},
4589
4589
  "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"},
4590
4590
  "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
4591
- "Tags":{"shape":"tagListType"}
4591
+ "Tags":{"shape":"tagListType"},
4592
+ "RoleLastUsed":{"shape":"RoleLastUsed"}
4592
4593
  }
4593
4594
  },
4594
4595
  "RoleDetail":{
@@ -4604,7 +4605,15 @@
4604
4605
  "RolePolicyList":{"shape":"policyDetailListType"},
4605
4606
  "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"},
4606
4607
  "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
4607
- "Tags":{"shape":"tagListType"}
4608
+ "Tags":{"shape":"tagListType"},
4609
+ "RoleLastUsed":{"shape":"RoleLastUsed"}
4610
+ }
4611
+ },
4612
+ "RoleLastUsed":{
4613
+ "type":"structure",
4614
+ "members":{
4615
+ "LastUsedDate":{"shape":"dateType"},
4616
+ "Region":{"shape":"stringType"}
4608
4617
  }
4609
4618
  },
4610
4619
  "RoleUsageListType":{
@@ -733,8 +733,13 @@
733
733
  "Arn": "arn:aws:iam::123456789012:role/Test-Role",
734
734
  "AssumeRolePolicyDocument": "<URL-encoded-JSON>",
735
735
  "CreateDate": "2013-04-18T05:01:58Z",
736
+ "MaxSessionDuration": 3600,
736
737
  "Path": "/",
737
738
  "RoleId": "AROADBQP57FF2AEXAMPLE",
739
+ "RoleLastUsed": {
740
+ "LastUsedDate": "2019-11-18T05:01:58Z",
741
+ "Region": "us-east-1"
742
+ },
738
743
  "RoleName": "Test-Role"
739
744
  }
740
745
  },
@@ -238,6 +238,22 @@
238
238
  {"shape":"InternalFailureException"}
239
239
  ]
240
240
  },
241
+ "ConfirmTopicRuleDestination":{
242
+ "name":"ConfirmTopicRuleDestination",
243
+ "http":{
244
+ "method":"GET",
245
+ "requestUri":"/confirmdestination/{confirmationToken+}"
246
+ },
247
+ "input":{"shape":"ConfirmTopicRuleDestinationRequest"},
248
+ "output":{"shape":"ConfirmTopicRuleDestinationResponse"},
249
+ "errors":[
250
+ {"shape":"InternalException"},
251
+ {"shape":"InvalidRequestException"},
252
+ {"shape":"ServiceUnavailableException"},
253
+ {"shape":"UnauthorizedException"},
254
+ {"shape":"ConflictingResourceUpdateException"}
255
+ ]
256
+ },
241
257
  "CreateAuthorizer":{
242
258
  "name":"CreateAuthorizer",
243
259
  "http":{
@@ -544,6 +560,22 @@
544
560
  {"shape":"ConflictingResourceUpdateException"}
545
561
  ]
546
562
  },
563
+ "CreateTopicRuleDestination":{
564
+ "name":"CreateTopicRuleDestination",
565
+ "http":{
566
+ "method":"POST",
567
+ "requestUri":"/destinations"
568
+ },
569
+ "input":{"shape":"CreateTopicRuleDestinationRequest"},
570
+ "output":{"shape":"CreateTopicRuleDestinationResponse"},
571
+ "errors":[
572
+ {"shape":"InternalException"},
573
+ {"shape":"InvalidRequestException"},
574
+ {"shape":"ResourceAlreadyExistsException"},
575
+ {"shape":"ServiceUnavailableException"},
576
+ {"shape":"ConflictingResourceUpdateException"}
577
+ ]
578
+ },
547
579
  "DeleteAccountAuditConfiguration":{
548
580
  "name":"DeleteAccountAuditConfiguration",
549
581
  "http":{
@@ -887,6 +919,22 @@
887
919
  {"shape":"ConflictingResourceUpdateException"}
888
920
  ]
889
921
  },
922
+ "DeleteTopicRuleDestination":{
923
+ "name":"DeleteTopicRuleDestination",
924
+ "http":{
925
+ "method":"DELETE",
926
+ "requestUri":"/destinations/{arn+}"
927
+ },
928
+ "input":{"shape":"DeleteTopicRuleDestinationRequest"},
929
+ "output":{"shape":"DeleteTopicRuleDestinationResponse"},
930
+ "errors":[
931
+ {"shape":"InternalException"},
932
+ {"shape":"InvalidRequestException"},
933
+ {"shape":"ServiceUnavailableException"},
934
+ {"shape":"UnauthorizedException"},
935
+ {"shape":"ConflictingResourceUpdateException"}
936
+ ]
937
+ },
890
938
  "DeleteV2LoggingLevel":{
891
939
  "name":"DeleteV2LoggingLevel",
892
940
  "http":{
@@ -1577,6 +1625,21 @@
1577
1625
  {"shape":"UnauthorizedException"}
1578
1626
  ]
1579
1627
  },
1628
+ "GetTopicRuleDestination":{
1629
+ "name":"GetTopicRuleDestination",
1630
+ "http":{
1631
+ "method":"GET",
1632
+ "requestUri":"/destinations/{arn+}"
1633
+ },
1634
+ "input":{"shape":"GetTopicRuleDestinationRequest"},
1635
+ "output":{"shape":"GetTopicRuleDestinationResponse"},
1636
+ "errors":[
1637
+ {"shape":"InternalException"},
1638
+ {"shape":"InvalidRequestException"},
1639
+ {"shape":"ServiceUnavailableException"},
1640
+ {"shape":"UnauthorizedException"}
1641
+ ]
1642
+ },
1580
1643
  "GetV2LoggingOptions":{
1581
1644
  "name":"GetV2LoggingOptions",
1582
1645
  "http":{
@@ -2211,6 +2274,21 @@
2211
2274
  {"shape":"ResourceNotFoundException"}
2212
2275
  ]
2213
2276
  },
2277
+ "ListTopicRuleDestinations":{
2278
+ "name":"ListTopicRuleDestinations",
2279
+ "http":{
2280
+ "method":"GET",
2281
+ "requestUri":"/destinations"
2282
+ },
2283
+ "input":{"shape":"ListTopicRuleDestinationsRequest"},
2284
+ "output":{"shape":"ListTopicRuleDestinationsResponse"},
2285
+ "errors":[
2286
+ {"shape":"InternalException"},
2287
+ {"shape":"InvalidRequestException"},
2288
+ {"shape":"ServiceUnavailableException"},
2289
+ {"shape":"UnauthorizedException"}
2290
+ ]
2291
+ },
2214
2292
  "ListTopicRules":{
2215
2293
  "name":"ListTopicRules",
2216
2294
  "http":{
@@ -2887,6 +2965,22 @@
2887
2965
  {"shape":"ResourceNotFoundException"}
2888
2966
  ]
2889
2967
  },
2968
+ "UpdateTopicRuleDestination":{
2969
+ "name":"UpdateTopicRuleDestination",
2970
+ "http":{
2971
+ "method":"PATCH",
2972
+ "requestUri":"/destinations"
2973
+ },
2974
+ "input":{"shape":"UpdateTopicRuleDestinationRequest"},
2975
+ "output":{"shape":"UpdateTopicRuleDestinationResponse"},
2976
+ "errors":[
2977
+ {"shape":"InternalException"},
2978
+ {"shape":"InvalidRequestException"},
2979
+ {"shape":"ServiceUnavailableException"},
2980
+ {"shape":"UnauthorizedException"},
2981
+ {"shape":"ConflictingResourceUpdateException"}
2982
+ ]
2983
+ },
2890
2984
  "ValidateSecurityProfileBehaviors":{
2891
2985
  "name":"ValidateSecurityProfileBehaviors",
2892
2986
  "http":{
@@ -2972,7 +3066,8 @@
2972
3066
  "salesforce":{"shape":"SalesforceAction"},
2973
3067
  "iotAnalytics":{"shape":"IotAnalyticsAction"},
2974
3068
  "iotEvents":{"shape":"IotEventsAction"},
2975
- "stepFunctions":{"shape":"StepFunctionsAction"}
3069
+ "stepFunctions":{"shape":"StepFunctionsAction"},
3070
+ "http":{"shape":"HttpAction"}
2976
3071
  }
2977
3072
  },
2978
3073
  "ActionList":{
@@ -3945,6 +4040,27 @@
3945
4040
  "Enabled":{"shape":"Enabled"}
3946
4041
  }
3947
4042
  },
4043
+ "ConfirmTopicRuleDestinationRequest":{
4044
+ "type":"structure",
4045
+ "required":["confirmationToken"],
4046
+ "members":{
4047
+ "confirmationToken":{
4048
+ "shape":"ConfirmationToken",
4049
+ "location":"uri",
4050
+ "locationName":"confirmationToken"
4051
+ }
4052
+ }
4053
+ },
4054
+ "ConfirmTopicRuleDestinationResponse":{
4055
+ "type":"structure",
4056
+ "members":{
4057
+ }
4058
+ },
4059
+ "ConfirmationToken":{
4060
+ "type":"string",
4061
+ "max":2048,
4062
+ "min":1
4063
+ },
3948
4064
  "ConflictingResourceUpdateException":{
3949
4065
  "type":"structure",
3950
4066
  "members":{
@@ -4391,6 +4507,19 @@
4391
4507
  "thingTypeId":{"shape":"ThingTypeId"}
4392
4508
  }
4393
4509
  },
4510
+ "CreateTopicRuleDestinationRequest":{
4511
+ "type":"structure",
4512
+ "required":["destinationConfiguration"],
4513
+ "members":{
4514
+ "destinationConfiguration":{"shape":"TopicRuleDestinationConfiguration"}
4515
+ }
4516
+ },
4517
+ "CreateTopicRuleDestinationResponse":{
4518
+ "type":"structure",
4519
+ "members":{
4520
+ "topicRuleDestination":{"shape":"TopicRuleDestination"}
4521
+ }
4522
+ },
4394
4523
  "CreateTopicRuleRequest":{
4395
4524
  "type":"structure",
4396
4525
  "required":[
@@ -4822,6 +4951,22 @@
4822
4951
  "members":{
4823
4952
  }
4824
4953
  },
4954
+ "DeleteTopicRuleDestinationRequest":{
4955
+ "type":"structure",
4956
+ "required":["arn"],
4957
+ "members":{
4958
+ "arn":{
4959
+ "shape":"AwsArn",
4960
+ "location":"uri",
4961
+ "locationName":"arn"
4962
+ }
4963
+ }
4964
+ },
4965
+ "DeleteTopicRuleDestinationResponse":{
4966
+ "type":"structure",
4967
+ "members":{
4968
+ }
4969
+ },
4825
4970
  "DeleteTopicRuleRequest":{
4826
4971
  "type":"structure",
4827
4972
  "required":["ruleName"],
@@ -5709,11 +5854,6 @@
5709
5854
  "ForceFlag":{"type":"boolean"},
5710
5855
  "Forced":{"type":"boolean"},
5711
5856
  "FunctionArn":{"type":"string"},
5712
- "GEMaxResults":{
5713
- "type":"integer",
5714
- "max":10000,
5715
- "min":1
5716
- },
5717
5857
  "GenerationId":{"type":"string"},
5718
5858
  "GetCardinalityRequest":{
5719
5859
  "type":"structure",
@@ -5906,6 +6046,23 @@
5906
6046
  "statistics":{"shape":"Statistics"}
5907
6047
  }
5908
6048
  },
6049
+ "GetTopicRuleDestinationRequest":{
6050
+ "type":"structure",
6051
+ "required":["arn"],
6052
+ "members":{
6053
+ "arn":{
6054
+ "shape":"AwsArn",
6055
+ "location":"uri",
6056
+ "locationName":"arn"
6057
+ }
6058
+ }
6059
+ },
6060
+ "GetTopicRuleDestinationResponse":{
6061
+ "type":"structure",
6062
+ "members":{
6063
+ "topicRuleDestination":{"shape":"TopicRuleDestination"}
6064
+ }
6065
+ },
5909
6066
  "GetTopicRuleRequest":{
5910
6067
  "type":"structure",
5911
6068
  "required":["ruleName"],
@@ -5947,6 +6104,64 @@
5947
6104
  "HashAlgorithm":{"type":"string"},
5948
6105
  "HashKeyField":{"type":"string"},
5949
6106
  "HashKeyValue":{"type":"string"},
6107
+ "HeaderKey":{
6108
+ "type":"string",
6109
+ "max":256,
6110
+ "min":1
6111
+ },
6112
+ "HeaderList":{
6113
+ "type":"list",
6114
+ "member":{"shape":"HttpActionHeader"},
6115
+ "max":100,
6116
+ "min":0
6117
+ },
6118
+ "HeaderValue":{"type":"string"},
6119
+ "HttpAction":{
6120
+ "type":"structure",
6121
+ "required":["url"],
6122
+ "members":{
6123
+ "url":{"shape":"Url"},
6124
+ "confirmationUrl":{"shape":"Url"},
6125
+ "headers":{"shape":"HeaderList"},
6126
+ "auth":{"shape":"HttpAuthorization"}
6127
+ }
6128
+ },
6129
+ "HttpActionHeader":{
6130
+ "type":"structure",
6131
+ "required":[
6132
+ "key",
6133
+ "value"
6134
+ ],
6135
+ "members":{
6136
+ "key":{"shape":"HeaderKey"},
6137
+ "value":{"shape":"HeaderValue"}
6138
+ }
6139
+ },
6140
+ "HttpAuthorization":{
6141
+ "type":"structure",
6142
+ "members":{
6143
+ "sigv4":{"shape":"SigV4Authorization"}
6144
+ }
6145
+ },
6146
+ "HttpUrlDestinationConfiguration":{
6147
+ "type":"structure",
6148
+ "required":["confirmationUrl"],
6149
+ "members":{
6150
+ "confirmationUrl":{"shape":"Url"}
6151
+ }
6152
+ },
6153
+ "HttpUrlDestinationProperties":{
6154
+ "type":"structure",
6155
+ "members":{
6156
+ "confirmationUrl":{"shape":"Url"}
6157
+ }
6158
+ },
6159
+ "HttpUrlDestinationSummary":{
6160
+ "type":"structure",
6161
+ "members":{
6162
+ "confirmationUrl":{"shape":"Url"}
6163
+ }
6164
+ },
5950
6165
  "ImplicitDeny":{
5951
6166
  "type":"structure",
5952
6167
  "members":{
@@ -7496,6 +7711,28 @@
7496
7711
  "nextToken":{"shape":"NextToken"}
7497
7712
  }
7498
7713
  },
7714
+ "ListTopicRuleDestinationsRequest":{
7715
+ "type":"structure",
7716
+ "members":{
7717
+ "maxResults":{
7718
+ "shape":"TopicRuleDestinationMaxResults",
7719
+ "location":"querystring",
7720
+ "locationName":"maxResults"
7721
+ },
7722
+ "nextToken":{
7723
+ "shape":"NextToken",
7724
+ "location":"querystring",
7725
+ "locationName":"nextToken"
7726
+ }
7727
+ }
7728
+ },
7729
+ "ListTopicRuleDestinationsResponse":{
7730
+ "type":"structure",
7731
+ "members":{
7732
+ "destinationSummaries":{"shape":"TopicRuleDestinationSummaries"},
7733
+ "nextToken":{"shape":"NextToken"}
7734
+ }
7735
+ },
7499
7736
  "ListTopicRulesRequest":{
7500
7737
  "type":"structure",
7501
7738
  "members":{
@@ -7505,7 +7742,7 @@
7505
7742
  "locationName":"topic"
7506
7743
  },
7507
7744
  "maxResults":{
7508
- "shape":"GEMaxResults",
7745
+ "shape":"TopicRuleMaxResults",
7509
7746
  "location":"querystring",
7510
7747
  "locationName":"maxResults"
7511
7748
  },
@@ -8542,6 +8779,7 @@
8542
8779
  "type":"list",
8543
8780
  "member":{"shape":"SecurityProfileTarget"}
8544
8781
  },
8782
+ "ServiceName":{"type":"string"},
8545
8783
  "ServiceUnavailableException":{
8546
8784
  "type":"structure",
8547
8785
  "members":{
@@ -8614,6 +8852,19 @@
8614
8852
  "disableAllLogs":{"shape":"DisableAllLogs"}
8615
8853
  }
8616
8854
  },
8855
+ "SigV4Authorization":{
8856
+ "type":"structure",
8857
+ "required":[
8858
+ "signingRegion",
8859
+ "serviceName",
8860
+ "roleArn"
8861
+ ],
8862
+ "members":{
8863
+ "signingRegion":{"shape":"SigningRegion"},
8864
+ "serviceName":{"shape":"ServiceName"},
8865
+ "roleArn":{"shape":"AwsArn"}
8866
+ }
8867
+ },
8617
8868
  "Signature":{"type":"blob"},
8618
8869
  "SignatureAlgorithm":{"type":"string"},
8619
8870
  "SigningJobId":{"type":"string"},
@@ -8626,6 +8877,7 @@
8626
8877
  "certificatePathOnDevice":{"shape":"CertificatePathOnDevice"}
8627
8878
  }
8628
8879
  },
8880
+ "SigningRegion":{"type":"string"},
8629
8881
  "SkippedFindingsCount":{"type":"long"},
8630
8882
  "SkyfallMaxResults":{
8631
8883
  "type":"integer",
@@ -9278,6 +9530,48 @@
9278
9530
  "errorAction":{"shape":"Action"}
9279
9531
  }
9280
9532
  },
9533
+ "TopicRuleDestination":{
9534
+ "type":"structure",
9535
+ "members":{
9536
+ "arn":{"shape":"AwsArn"},
9537
+ "status":{"shape":"TopicRuleDestinationStatus"},
9538
+ "statusReason":{"shape":"String"},
9539
+ "httpUrlProperties":{"shape":"HttpUrlDestinationProperties"}
9540
+ }
9541
+ },
9542
+ "TopicRuleDestinationConfiguration":{
9543
+ "type":"structure",
9544
+ "members":{
9545
+ "httpUrlConfiguration":{"shape":"HttpUrlDestinationConfiguration"}
9546
+ }
9547
+ },
9548
+ "TopicRuleDestinationMaxResults":{
9549
+ "type":"integer",
9550
+ "max":1000,
9551
+ "min":1
9552
+ },
9553
+ "TopicRuleDestinationStatus":{
9554
+ "type":"string",
9555
+ "enum":[
9556
+ "ENABLED",
9557
+ "IN_PROGRESS",
9558
+ "DISABLED",
9559
+ "ERROR"
9560
+ ]
9561
+ },
9562
+ "TopicRuleDestinationSummaries":{
9563
+ "type":"list",
9564
+ "member":{"shape":"TopicRuleDestinationSummary"}
9565
+ },
9566
+ "TopicRuleDestinationSummary":{
9567
+ "type":"structure",
9568
+ "members":{
9569
+ "arn":{"shape":"AwsArn"},
9570
+ "status":{"shape":"TopicRuleDestinationStatus"},
9571
+ "statusReason":{"shape":"String"},
9572
+ "httpUrlSummary":{"shape":"HttpUrlDestinationSummary"}
9573
+ }
9574
+ },
9281
9575
  "TopicRuleList":{
9282
9576
  "type":"list",
9283
9577
  "member":{"shape":"TopicRuleListItem"}
@@ -9292,6 +9586,11 @@
9292
9586
  "ruleDisabled":{"shape":"IsDisabled"}
9293
9587
  }
9294
9588
  },
9589
+ "TopicRuleMaxResults":{
9590
+ "type":"integer",
9591
+ "max":10000,
9592
+ "min":1
9593
+ },
9295
9594
  "TopicRulePayload":{
9296
9595
  "type":"structure",
9297
9596
  "required":[
@@ -9745,6 +10044,26 @@
9745
10044
  "members":{
9746
10045
  }
9747
10046
  },
10047
+ "UpdateTopicRuleDestinationRequest":{
10048
+ "type":"structure",
10049
+ "required":[
10050
+ "arn",
10051
+ "status"
10052
+ ],
10053
+ "members":{
10054
+ "arn":{"shape":"AwsArn"},
10055
+ "status":{"shape":"TopicRuleDestinationStatus"}
10056
+ }
10057
+ },
10058
+ "UpdateTopicRuleDestinationResponse":{
10059
+ "type":"structure",
10060
+ "members":{
10061
+ }
10062
+ },
10063
+ "Url":{
10064
+ "type":"string",
10065
+ "max":2000
10066
+ },
9748
10067
  "UseBase64":{"type":"boolean"},
9749
10068
  "Valid":{"type":"boolean"},
9750
10069
  "ValidateSecurityProfileBehaviorsRequest":{