aws-sdk 2.1130.0 → 2.1131.0
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.
- package/CHANGELOG.md +5 -1
- package/README.md +1 -1
- package/apis/cloudcontrol-2021-09-30.paginators.json +4 -2
- package/apis/cloudcontrol-2021-09-30.waiters2.json +23 -27
- package/apis/evidently-2021-02-01.min.json +1 -0
- package/apis/ssm-contacts-2021-05-03.examples.json +1 -1
- package/clients/cloudcontrol.d.ts +3 -3
- package/clients/evidently.d.ts +8 -4
- package/clients/ssmcontacts.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1131.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1131.0
|
|
6
|
+
* feature: CloudControl: SDK release for Cloud Control API to include paginators for Python SDK.
|
|
7
|
+
* feature: Evidently: Add detail message inside GetExperimentResults API response to indicate experiment result availability
|
|
8
|
+
|
|
5
9
|
## 2.1130.0
|
|
6
10
|
* feature: EC2: Add new state values for IPAMs, IPAM Scopes, and IPAM Pools.
|
|
7
11
|
* feature: Location: Amazon Location Service now includes a MaxResults parameter for ListGeofences requests.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1131.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -3,12 +3,14 @@
|
|
|
3
3
|
"ListResourceRequests": {
|
|
4
4
|
"input_token": "NextToken",
|
|
5
5
|
"output_token": "NextToken",
|
|
6
|
-
"limit_key": "MaxResults"
|
|
6
|
+
"limit_key": "MaxResults",
|
|
7
|
+
"result_key": "ResourceRequestStatusSummaries"
|
|
7
8
|
},
|
|
8
9
|
"ListResources": {
|
|
9
10
|
"input_token": "NextToken",
|
|
10
11
|
"output_token": "NextToken",
|
|
11
|
-
"limit_key": "MaxResults"
|
|
12
|
+
"limit_key": "MaxResults",
|
|
13
|
+
"result_key": "ResourceDescriptions"
|
|
12
14
|
}
|
|
13
15
|
}
|
|
14
16
|
}
|
|
@@ -1,31 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": 2,
|
|
3
|
-
"waiters": {
|
|
4
|
-
"ResourceRequestSuccess": {
|
|
5
|
-
"description": "Wait until resource operation request is successful",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"acceptors": [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"argument": "ProgressEvent.OperationStatus",
|
|
26
|
-
"expected": "CANCEL_COMPLETE"
|
|
27
|
-
}
|
|
28
|
-
]
|
|
2
|
+
"version" : 2,
|
|
3
|
+
"waiters" : {
|
|
4
|
+
"ResourceRequestSuccess" : {
|
|
5
|
+
"description" : "Wait until resource operation request is successful",
|
|
6
|
+
"delay" : 5,
|
|
7
|
+
"maxAttempts" : 24,
|
|
8
|
+
"operation" : "GetResourceRequestStatus",
|
|
9
|
+
"acceptors" : [ {
|
|
10
|
+
"matcher" : "path",
|
|
11
|
+
"argument" : "ProgressEvent.OperationStatus",
|
|
12
|
+
"state" : "success",
|
|
13
|
+
"expected" : "SUCCESS"
|
|
14
|
+
}, {
|
|
15
|
+
"matcher" : "path",
|
|
16
|
+
"argument" : "ProgressEvent.OperationStatus",
|
|
17
|
+
"state" : "failure",
|
|
18
|
+
"expected" : "FAILED"
|
|
19
|
+
}, {
|
|
20
|
+
"matcher" : "path",
|
|
21
|
+
"argument" : "ProgressEvent.OperationStatus",
|
|
22
|
+
"state" : "failure",
|
|
23
|
+
"expected" : "CANCEL_COMPLETE"
|
|
24
|
+
} ]
|
|
29
25
|
}
|
|
30
26
|
}
|
|
31
27
|
}
|
|
@@ -77,11 +77,11 @@ declare class CloudControl extends Service {
|
|
|
77
77
|
*/
|
|
78
78
|
updateResource(callback?: (err: AWSError, data: CloudControl.Types.UpdateResourceOutput) => void): Request<CloudControl.Types.UpdateResourceOutput, AWSError>;
|
|
79
79
|
/**
|
|
80
|
-
* Waits for the resourceRequestSuccess state by periodically calling the underlying CloudControl.getResourceRequestStatusoperation every 5 seconds (at most
|
|
80
|
+
* Waits for the resourceRequestSuccess state by periodically calling the underlying CloudControl.getResourceRequestStatusoperation every 5 seconds (at most 24 times). Wait until resource operation request is successful
|
|
81
81
|
*/
|
|
82
82
|
waitFor(state: "resourceRequestSuccess", params: CloudControl.Types.GetResourceRequestStatusInput & {$waiter?: WaiterConfiguration}, callback?: (err: AWSError, data: CloudControl.Types.GetResourceRequestStatusOutput) => void): Request<CloudControl.Types.GetResourceRequestStatusOutput, AWSError>;
|
|
83
83
|
/**
|
|
84
|
-
* Waits for the resourceRequestSuccess state by periodically calling the underlying CloudControl.getResourceRequestStatusoperation every 5 seconds (at most
|
|
84
|
+
* Waits for the resourceRequestSuccess state by periodically calling the underlying CloudControl.getResourceRequestStatusoperation every 5 seconds (at most 24 times). Wait until resource operation request is successful
|
|
85
85
|
*/
|
|
86
86
|
waitFor(state: "resourceRequestSuccess", callback?: (err: AWSError, data: CloudControl.Types.GetResourceRequestStatusOutput) => void): Request<CloudControl.Types.GetResourceRequestStatusOutput, AWSError>;
|
|
87
87
|
}
|
|
@@ -114,7 +114,7 @@ declare namespace CloudControl {
|
|
|
114
114
|
*/
|
|
115
115
|
ClientToken?: ClientToken;
|
|
116
116
|
/**
|
|
117
|
-
* Structured data format representing the desired state of the resource, consisting of that resource's properties and their desired values. Cloud Control API currently supports JSON as a structured data format.
|
|
117
|
+
* Structured data format representing the desired state of the resource, consisting of that resource's properties and their desired values. Cloud Control API currently supports JSON as a structured data format. <p>Specify the desired state as one of the following:</p> <ul> <li> <p>A JSON blob</p> </li> <li> <p>A local path containing the desired state in JSON data format</p> </li> </ul> <p>For more information, see <a href="https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-create.html#resource-operations-create-desiredstate">Composing the desired state of the resource</a> in the <i>Amazon Web Services Cloud Control API User Guide</i>.</p> <p>For more information about the properties of a specific resource, refer to the related topic for the resource in the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html">Resource and property types reference</a> in the <i>CloudFormation Users Guide</i>.</p>
|
|
118
118
|
*/
|
|
119
119
|
DesiredState: Properties;
|
|
120
120
|
}
|
package/clients/evidently.d.ts
CHANGED
|
@@ -100,11 +100,11 @@ declare class Evidently extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
getExperiment(callback?: (err: AWSError, data: Evidently.Types.GetExperimentResponse) => void): Request<Evidently.Types.GetExperimentResponse, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Retrieves the results of a running or completed experiment.
|
|
103
|
+
* Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
|
|
104
104
|
*/
|
|
105
105
|
getExperimentResults(params: Evidently.Types.GetExperimentResultsRequest, callback?: (err: AWSError, data: Evidently.Types.GetExperimentResultsResponse) => void): Request<Evidently.Types.GetExperimentResultsResponse, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Retrieves the results of a running or completed experiment.
|
|
107
|
+
* Retrieves the results of a running or completed experiment. No results are available until there have been 100 events for each variation and at least 10 minutes have passed since the start of the experiment. Experiment results are available up to 63 days after the start of the experiment. They are not available after that because of CloudWatch data retention policies.
|
|
108
108
|
*/
|
|
109
109
|
getExperimentResults(callback?: (err: AWSError, data: Evidently.Types.GetExperimentResultsResponse) => void): Request<Evidently.Types.GetExperimentResultsResponse, AWSError>;
|
|
110
110
|
/**
|
|
@@ -874,7 +874,7 @@ declare namespace Evidently {
|
|
|
874
874
|
*/
|
|
875
875
|
baseStat?: ExperimentBaseStat;
|
|
876
876
|
/**
|
|
877
|
-
* The date and time that the experiment ended, if it is completed.
|
|
877
|
+
* The date and time that the experiment ended, if it is completed. This must be no longer than 30 days after the experiment start time.
|
|
878
878
|
*/
|
|
879
879
|
endTime?: Timestamp;
|
|
880
880
|
/**
|
|
@@ -911,6 +911,10 @@ declare namespace Evidently {
|
|
|
911
911
|
treatmentNames: TreatmentNameList;
|
|
912
912
|
}
|
|
913
913
|
export interface GetExperimentResultsResponse {
|
|
914
|
+
/**
|
|
915
|
+
* If the experiment doesn't yet have enough events to provide valid results, this field is returned with the message Not enough events to generate results. If there are enough events to provide valid results, this field is not returned.
|
|
916
|
+
*/
|
|
917
|
+
details?: String;
|
|
914
918
|
/**
|
|
915
919
|
* An array of structures that include the reports that you requested.
|
|
916
920
|
*/
|
|
@@ -1533,7 +1537,7 @@ declare namespace Evidently {
|
|
|
1533
1537
|
export type SplitWeight = number;
|
|
1534
1538
|
export interface StartExperimentRequest {
|
|
1535
1539
|
/**
|
|
1536
|
-
* The date and time to end the experiment.
|
|
1540
|
+
* The date and time to end the experiment. This must be no more than 30 days after the experiment starts.
|
|
1537
1541
|
*/
|
|
1538
1542
|
analysisCompleteTime: Timestamp;
|
|
1539
1543
|
/**
|
package/clients/ssmcontacts.d.ts
CHANGED
|
@@ -164,11 +164,11 @@ declare class SSMContacts extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
listTagsForResource(callback?: (err: AWSError, data: SSMContacts.Types.ListTagsForResourceResult) => void): Request<SSMContacts.Types.ListTagsForResourceResult, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Adds a resource to the specified contact or escalation plan.
|
|
167
|
+
* Adds a resource policy to the specified contact or escalation plan. The resource policy is used to share the contact or escalation plan using Resource Access Manager (RAM). For more information about cross-account sharing, see Setting up cross-account functionality.
|
|
168
168
|
*/
|
|
169
169
|
putContactPolicy(params: SSMContacts.Types.PutContactPolicyRequest, callback?: (err: AWSError, data: SSMContacts.Types.PutContactPolicyResult) => void): Request<SSMContacts.Types.PutContactPolicyResult, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Adds a resource to the specified contact or escalation plan.
|
|
171
|
+
* Adds a resource policy to the specified contact or escalation plan. The resource policy is used to share the contact or escalation plan using Resource Access Manager (RAM). For more information about cross-account sharing, see Setting up cross-account functionality.
|
|
172
172
|
*/
|
|
173
173
|
putContactPolicy(callback?: (err: AWSError, data: SSMContacts.Types.PutContactPolicyResult) => void): Request<SSMContacts.Types.PutContactPolicyResult, AWSError>;
|
|
174
174
|
/**
|
|
@@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
395
395
|
/**
|
|
396
396
|
* @constant
|
|
397
397
|
*/
|
|
398
|
-
VERSION: '2.
|
|
398
|
+
VERSION: '2.1131.0',
|
|
399
399
|
|
|
400
400
|
/**
|
|
401
401
|
* @api private
|
|
@@ -55135,13 +55135,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
55135
55135
|
/* 1072 */
|
|
55136
55136
|
/***/ (function(module, exports) {
|
|
55137
55137
|
|
|
55138
|
-
module.exports = {"pagination":{"ListResourceRequests":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListResources":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
|
|
55138
|
+
module.exports = {"pagination":{"ListResourceRequests":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ResourceRequestStatusSummaries"},"ListResources":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ResourceDescriptions"}}}
|
|
55139
55139
|
|
|
55140
55140
|
/***/ }),
|
|
55141
55141
|
/* 1073 */
|
|
55142
55142
|
/***/ (function(module, exports) {
|
|
55143
55143
|
|
|
55144
|
-
module.exports = {"version":2,"waiters":{"ResourceRequestSuccess":{"description":"Wait until resource operation request is successful","
|
|
55144
|
+
module.exports = {"version":2,"waiters":{"ResourceRequestSuccess":{"description":"Wait until resource operation request is successful","delay":5,"maxAttempts":24,"operation":"GetResourceRequestStatus","acceptors":[{"matcher":"path","argument":"ProgressEvent.OperationStatus","state":"success","expected":"SUCCESS"},{"matcher":"path","argument":"ProgressEvent.OperationStatus","state":"failure","expected":"FAILED"},{"matcher":"path","argument":"ProgressEvent.OperationStatus","state":"failure","expected":"CANCEL_COMPLETE"}]}}}
|
|
55145
55145
|
|
|
55146
55146
|
/***/ }),
|
|
55147
55147
|
/* 1074 */
|
|
@@ -55459,7 +55459,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
55459
55459
|
/* 1099 */
|
|
55460
55460
|
/***/ (function(module, exports) {
|
|
55461
55461
|
|
|
55462
|
-
module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-02-01","endpointPrefix":"evidently","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"Amazon CloudWatch Evidently","serviceId":"Evidently","signatureVersion":"v4","signingName":"evidently","uid":"evidently-2021-02-01"},"operations":{"BatchEvaluateFeature":{"http":{"requestUri":"/projects/{project}/evaluations","responseCode":200},"input":{"type":"structure","required":["project","requests"],"members":{"project":{"location":"uri","locationName":"project"},"requests":{"type":"list","member":{"type":"structure","required":["entityId","feature"],"members":{"entityId":{},"evaluationContext":{"jsonvalue":true},"feature":{}}}}}},"output":{"type":"structure","members":{"results":{"type":"list","member":{"type":"structure","required":["entityId","feature"],"members":{"details":{"jsonvalue":true},"entityId":{},"feature":{},"project":{},"reason":{},"value":{"shape":"Sd"},"variation":{}}}}}},"endpoint":{"hostPrefix":"dataplane."}},"CreateExperiment":{"http":{"requestUri":"/projects/{project}/experiments","responseCode":200},"input":{"type":"structure","required":["metricGoals","name","project","treatments"],"members":{"description":{},"metricGoals":{"shape":"Sk"},"name":{},"onlineAbConfig":{"shape":"St"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"samplingRate":{"type":"long"},"tags":{"shape":"Sy"},"treatments":{"shape":"S11"}}},"output":{"type":"structure","required":["experiment"],"members":{"experiment":{"shape":"S15"}}},"idempotent":true},"CreateFeature":{"http":{"requestUri":"/projects/{project}/features","responseCode":200},"input":{"type":"structure","required":["name","project","variations"],"members":{"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationStrategy":{},"name":{},"project":{"location":"uri","locationName":"project"},"tags":{"shape":"Sy"},"variations":{"shape":"S1n"}}},"output":{"type":"structure","members":{"feature":{"shape":"S1q"}}}},"CreateLaunch":{"http":{"requestUri":"/projects/{project}/launches","responseCode":200},"input":{"type":"structure","required":["groups","name","project"],"members":{"description":{},"groups":{"shape":"S21"},"metricMonitors":{"shape":"S24"},"name":{},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"scheduledSplitsConfig":{"shape":"S27"},"tags":{"shape":"Sy"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"CreateProject":{"http":{"requestUri":"/projects","responseCode":200},"input":{"type":"structure","required":["name"],"members":{"dataDelivery":{"type":"structure","members":{"cloudWatchLogs":{"shape":"S2q"},"s3Destination":{"shape":"S2s"}}},"description":{},"name":{},"tags":{"shape":"Sy"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"DeleteExperiment":{"http":{"method":"DELETE","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteFeature":{"http":{"method":"DELETE","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteLaunch":{"http":{"method":"DELETE","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteProject":{"http":{"method":"DELETE","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"EvaluateFeature":{"http":{"requestUri":"/projects/{project}/evaluations/{feature}","responseCode":200},"input":{"type":"structure","required":["entityId","feature","project"],"members":{"entityId":{},"evaluationContext":{"jsonvalue":true},"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"details":{"jsonvalue":true},"reason":{},"value":{"shape":"Sd"},"variation":{}}},"endpoint":{"hostPrefix":"dataplane."}},"GetExperiment":{"http":{"method":"GET","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"experiment":{"shape":"S15"}}}},"GetExperimentResults":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/results","responseCode":200},"input":{"type":"structure","required":["experiment","metricNames","project","treatmentNames"],"members":{"baseStat":{},"endTime":{"type":"timestamp"},"experiment":{"location":"uri","locationName":"experiment"},"metricNames":{"type":"list","member":{}},"period":{"type":"long"},"project":{"location":"uri","locationName":"project"},"reportNames":{"type":"list","member":{}},"resultStats":{"type":"list","member":{}},"startTime":{"type":"timestamp"},"treatmentNames":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"reports":{"type":"list","member":{"type":"structure","members":{"content":{"jsonvalue":true},"metricName":{},"reportName":{},"treatmentName":{}}}},"resultsData":{"type":"list","member":{"type":"structure","members":{"metricName":{},"resultStat":{},"treatmentName":{},"values":{"type":"list","member":{"type":"double"}}}}},"timestamps":{"type":"list","member":{"type":"timestamp"}}}}},"GetFeature":{"http":{"method":"GET","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["feature"],"members":{"feature":{"shape":"S1q"}}}},"GetLaunch":{"http":{"method":"GET","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"launch":{"shape":"S2c"}}}},"GetProject":{"http":{"method":"GET","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"ListExperiments":{"http":{"method":"GET","requestUri":"/projects/{project}/experiments","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"},"status":{"location":"querystring","locationName":"status"}}},"output":{"type":"structure","members":{"experiments":{"type":"list","member":{"shape":"S15"}},"nextToken":{}}}},"ListFeatures":{"http":{"method":"GET","requestUri":"/projects/{project}/features","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"features":{"type":"list","member":{"type":"structure","required":["arn","createdTime","evaluationStrategy","lastUpdatedTime","name","status"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"defaultVariation":{},"evaluationRules":{"shape":"S1s"},"evaluationStrategy":{},"lastUpdatedTime":{"type":"timestamp"},"name":{},"project":{},"status":{},"tags":{"shape":"Sy"}}}},"nextToken":{}}}},"ListLaunches":{"http":{"method":"GET","requestUri":"/projects/{project}/launches","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"},"status":{"location":"querystring","locationName":"status"}}},"output":{"type":"structure","members":{"launches":{"type":"list","member":{"shape":"S2c"}},"nextToken":{}}}},"ListProjects":{"http":{"method":"GET","requestUri":"/projects","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"nextToken":{},"projects":{"type":"list","member":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status"],"members":{"activeExperimentCount":{"type":"long"},"activeLaunchCount":{"type":"long"},"arn":{},"createdTime":{"type":"timestamp"},"description":{},"experimentCount":{"type":"long"},"featureCount":{"type":"long"},"lastUpdatedTime":{"type":"timestamp"},"launchCount":{"type":"long"},"name":{},"status":{},"tags":{"shape":"Sy"}}}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"Sy"}}}},"PutProjectEvents":{"http":{"requestUri":"/events/projects/{project}","responseCode":200},"input":{"type":"structure","required":["events","project"],"members":{"events":{"type":"list","member":{"type":"structure","required":["data","timestamp","type"],"members":{"data":{"jsonvalue":true},"timestamp":{"type":"timestamp"},"type":{}}}},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"eventResults":{"type":"list","member":{"type":"structure","members":{"errorCode":{},"errorMessage":{},"eventId":{}}}},"failedEventCount":{"type":"integer"}}},"endpoint":{"hostPrefix":"dataplane."}},"StartExperiment":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/start","responseCode":200},"input":{"type":"structure","required":["analysisCompleteTime","experiment","project"],"members":{"analysisCompleteTime":{"type":"timestamp"},"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"startedTime":{"type":"timestamp"}}}},"StartLaunch":{"http":{"requestUri":"/projects/{project}/launches/{launch}/start","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"StopExperiment":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/cancel","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"desiredState":{},"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"},"reason":{}}},"output":{"type":"structure","members":{"endedTime":{"type":"timestamp"}}}},"StopLaunch":{"http":{"requestUri":"/projects/{project}/launches/{launch}/cancel","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"desiredState":{},"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"},"reason":{}}},"output":{"type":"structure","members":{"endedTime":{"type":"timestamp"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{}},"idempotent":true},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateExperiment":{"http":{"method":"PATCH","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"description":{},"experiment":{"location":"uri","locationName":"experiment"},"metricGoals":{"shape":"Sk"},"onlineAbConfig":{"shape":"St"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"samplingRate":{"type":"long"},"treatments":{"shape":"S11"}}},"output":{"type":"structure","required":["experiment"],"members":{"experiment":{"shape":"S15"}}}},"UpdateFeature":{"http":{"method":"PATCH","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"addOrUpdateVariations":{"shape":"S1n"},"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationStrategy":{},"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"},"removeVariations":{"type":"list","member":{}}}},"output":{"type":"structure","required":["feature"],"members":{"feature":{"shape":"S1q"}}}},"UpdateLaunch":{"http":{"method":"PATCH","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"description":{},"groups":{"shape":"S21"},"launch":{"location":"uri","locationName":"launch"},"metricMonitors":{"shape":"S24"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"scheduledSplitsConfig":{"shape":"S27"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"UpdateProject":{"http":{"method":"PATCH","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"description":{},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"UpdateProjectDataDelivery":{"http":{"method":"PATCH","requestUri":"/projects/{project}/data-delivery","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"cloudWatchLogs":{"shape":"S2q"},"project":{"location":"uri","locationName":"project"},"s3Destination":{"shape":"S2s"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}}},"shapes":{"Sd":{"type":"structure","members":{"boolValue":{"type":"boolean"},"doubleValue":{"type":"double"},"longValue":{"type":"long"},"stringValue":{}},"union":true},"Sk":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"desiredChange":{},"metricDefinition":{"shape":"Sn"}}}},"Sn":{"type":"structure","required":["entityIdKey","name","valueKey"],"members":{"entityIdKey":{},"eventPattern":{"jsonvalue":true},"name":{},"unitLabel":{},"valueKey":{}}},"St":{"type":"structure","members":{"controlTreatmentName":{},"treatmentWeights":{"shape":"Sv"}}},"Sv":{"type":"map","key":{},"value":{"type":"long"}},"Sy":{"type":"map","key":{},"value":{}},"S11":{"type":"list","member":{"type":"structure","required":["feature","name","variation"],"members":{"description":{},"feature":{},"name":{},"variation":{}}}},"S15":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status","type"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"description":{},"execution":{"type":"structure","members":{"endedTime":{"type":"timestamp"},"startedTime":{"type":"timestamp"}}},"lastUpdatedTime":{"type":"timestamp"},"metricGoals":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"desiredChange":{},"metricDefinition":{"shape":"S1b"}}}},"name":{},"onlineAbDefinition":{"type":"structure","members":{"controlTreatmentName":{},"treatmentWeights":{"shape":"Sv"}}},"project":{},"randomizationSalt":{},"samplingRate":{"type":"long"},"schedule":{"type":"structure","members":{"analysisCompleteTime":{"type":"timestamp"}}},"status":{},"statusReason":{},"tags":{"shape":"Sy"},"treatments":{"type":"list","member":{"type":"structure","required":["name"],"members":{"description":{},"featureVariations":{"shape":"S1i"},"name":{}}}},"type":{}}},"S1b":{"type":"structure","members":{"entityIdKey":{},"eventPattern":{"jsonvalue":true},"name":{},"unitLabel":{},"valueKey":{}}},"S1i":{"type":"map","key":{},"value":{}},"S1l":{"type":"map","key":{},"value":{}},"S1n":{"type":"list","member":{"type":"structure","required":["name","value"],"members":{"name":{},"value":{"shape":"Sd"}}}},"S1q":{"type":"structure","required":["arn","createdTime","evaluationStrategy","lastUpdatedTime","name","status","valueType","variations"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationRules":{"shape":"S1s"},"evaluationStrategy":{},"lastUpdatedTime":{"type":"timestamp"},"name":{},"project":{},"status":{},"tags":{"shape":"Sy"},"valueType":{},"variations":{"type":"list","member":{"type":"structure","members":{"name":{},"value":{"shape":"Sd"}}}}}},"S1s":{"type":"list","member":{"type":"structure","required":["type"],"members":{"name":{},"type":{}}}},"S21":{"type":"list","member":{"type":"structure","required":["feature","name","variation"],"members":{"description":{},"feature":{},"name":{},"variation":{}}}},"S24":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"metricDefinition":{"shape":"Sn"}}}},"S27":{"type":"structure","required":["steps"],"members":{"steps":{"type":"list","member":{"type":"structure","required":["groupWeights","startTime"],"members":{"groupWeights":{"shape":"S2a"},"startTime":{"type":"timestamp"}}}}}},"S2a":{"type":"map","key":{},"value":{"type":"long"}},"S2c":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status","type"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"description":{},"execution":{"type":"structure","members":{"endedTime":{"type":"timestamp"},"startedTime":{"type":"timestamp"}}},"groups":{"type":"list","member":{"type":"structure","required":["featureVariations","name"],"members":{"description":{},"featureVariations":{"shape":"S1i"},"name":{}}}},"lastUpdatedTime":{"type":"timestamp"},"metricMonitors":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"metricDefinition":{"shape":"S1b"}}}},"name":{},"project":{},"randomizationSalt":{},"scheduledSplitsDefinition":{"type":"structure","members":{"steps":{"type":"list","member":{"type":"structure","required":["startTime"],"members":{"groupWeights":{"shape":"S2a"},"startTime":{"type":"timestamp"}}}}}},"status":{},"statusReason":{},"tags":{"shape":"Sy"},"type":{}}},"S2q":{"type":"structure","members":{"logGroup":{}}},"S2s":{"type":"structure","members":{"bucket":{},"prefix":{}}},"S2x":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status"],"members":{"activeExperimentCount":{"type":"long"},"activeLaunchCount":{"type":"long"},"arn":{},"createdTime":{"type":"timestamp"},"dataDelivery":{"type":"structure","members":{"cloudWatchLogs":{"type":"structure","members":{"logGroup":{}}},"s3Destination":{"type":"structure","members":{"bucket":{},"prefix":{}}}}},"description":{},"experimentCount":{"type":"long"},"featureCount":{"type":"long"},"lastUpdatedTime":{"type":"timestamp"},"launchCount":{"type":"long"},"name":{},"status":{},"tags":{"shape":"Sy"}}}}}
|
|
55462
|
+
module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-02-01","endpointPrefix":"evidently","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"Amazon CloudWatch Evidently","serviceId":"Evidently","signatureVersion":"v4","signingName":"evidently","uid":"evidently-2021-02-01"},"operations":{"BatchEvaluateFeature":{"http":{"requestUri":"/projects/{project}/evaluations","responseCode":200},"input":{"type":"structure","required":["project","requests"],"members":{"project":{"location":"uri","locationName":"project"},"requests":{"type":"list","member":{"type":"structure","required":["entityId","feature"],"members":{"entityId":{},"evaluationContext":{"jsonvalue":true},"feature":{}}}}}},"output":{"type":"structure","members":{"results":{"type":"list","member":{"type":"structure","required":["entityId","feature"],"members":{"details":{"jsonvalue":true},"entityId":{},"feature":{},"project":{},"reason":{},"value":{"shape":"Sd"},"variation":{}}}}}},"endpoint":{"hostPrefix":"dataplane."}},"CreateExperiment":{"http":{"requestUri":"/projects/{project}/experiments","responseCode":200},"input":{"type":"structure","required":["metricGoals","name","project","treatments"],"members":{"description":{},"metricGoals":{"shape":"Sk"},"name":{},"onlineAbConfig":{"shape":"St"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"samplingRate":{"type":"long"},"tags":{"shape":"Sy"},"treatments":{"shape":"S11"}}},"output":{"type":"structure","required":["experiment"],"members":{"experiment":{"shape":"S15"}}},"idempotent":true},"CreateFeature":{"http":{"requestUri":"/projects/{project}/features","responseCode":200},"input":{"type":"structure","required":["name","project","variations"],"members":{"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationStrategy":{},"name":{},"project":{"location":"uri","locationName":"project"},"tags":{"shape":"Sy"},"variations":{"shape":"S1n"}}},"output":{"type":"structure","members":{"feature":{"shape":"S1q"}}}},"CreateLaunch":{"http":{"requestUri":"/projects/{project}/launches","responseCode":200},"input":{"type":"structure","required":["groups","name","project"],"members":{"description":{},"groups":{"shape":"S21"},"metricMonitors":{"shape":"S24"},"name":{},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"scheduledSplitsConfig":{"shape":"S27"},"tags":{"shape":"Sy"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"CreateProject":{"http":{"requestUri":"/projects","responseCode":200},"input":{"type":"structure","required":["name"],"members":{"dataDelivery":{"type":"structure","members":{"cloudWatchLogs":{"shape":"S2q"},"s3Destination":{"shape":"S2s"}}},"description":{},"name":{},"tags":{"shape":"Sy"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"DeleteExperiment":{"http":{"method":"DELETE","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteFeature":{"http":{"method":"DELETE","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteLaunch":{"http":{"method":"DELETE","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteProject":{"http":{"method":"DELETE","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{}},"idempotent":true},"EvaluateFeature":{"http":{"requestUri":"/projects/{project}/evaluations/{feature}","responseCode":200},"input":{"type":"structure","required":["entityId","feature","project"],"members":{"entityId":{},"evaluationContext":{"jsonvalue":true},"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"details":{"jsonvalue":true},"reason":{},"value":{"shape":"Sd"},"variation":{}}},"endpoint":{"hostPrefix":"dataplane."}},"GetExperiment":{"http":{"method":"GET","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"experiment":{"shape":"S15"}}}},"GetExperimentResults":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/results","responseCode":200},"input":{"type":"structure","required":["experiment","metricNames","project","treatmentNames"],"members":{"baseStat":{},"endTime":{"type":"timestamp"},"experiment":{"location":"uri","locationName":"experiment"},"metricNames":{"type":"list","member":{}},"period":{"type":"long"},"project":{"location":"uri","locationName":"project"},"reportNames":{"type":"list","member":{}},"resultStats":{"type":"list","member":{}},"startTime":{"type":"timestamp"},"treatmentNames":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"details":{},"reports":{"type":"list","member":{"type":"structure","members":{"content":{"jsonvalue":true},"metricName":{},"reportName":{},"treatmentName":{}}}},"resultsData":{"type":"list","member":{"type":"structure","members":{"metricName":{},"resultStat":{},"treatmentName":{},"values":{"type":"list","member":{"type":"double"}}}}},"timestamps":{"type":"list","member":{"type":"timestamp"}}}}},"GetFeature":{"http":{"method":"GET","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["feature"],"members":{"feature":{"shape":"S1q"}}}},"GetLaunch":{"http":{"method":"GET","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"launch":{"shape":"S2c"}}}},"GetProject":{"http":{"method":"GET","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"ListExperiments":{"http":{"method":"GET","requestUri":"/projects/{project}/experiments","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"},"status":{"location":"querystring","locationName":"status"}}},"output":{"type":"structure","members":{"experiments":{"type":"list","member":{"shape":"S15"}},"nextToken":{}}}},"ListFeatures":{"http":{"method":"GET","requestUri":"/projects/{project}/features","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"features":{"type":"list","member":{"type":"structure","required":["arn","createdTime","evaluationStrategy","lastUpdatedTime","name","status"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"defaultVariation":{},"evaluationRules":{"shape":"S1s"},"evaluationStrategy":{},"lastUpdatedTime":{"type":"timestamp"},"name":{},"project":{},"status":{},"tags":{"shape":"Sy"}}}},"nextToken":{}}}},"ListLaunches":{"http":{"method":"GET","requestUri":"/projects/{project}/launches","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"project":{"location":"uri","locationName":"project"},"status":{"location":"querystring","locationName":"status"}}},"output":{"type":"structure","members":{"launches":{"type":"list","member":{"shape":"S2c"}},"nextToken":{}}}},"ListProjects":{"http":{"method":"GET","requestUri":"/projects","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"nextToken":{},"projects":{"type":"list","member":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status"],"members":{"activeExperimentCount":{"type":"long"},"activeLaunchCount":{"type":"long"},"arn":{},"createdTime":{"type":"timestamp"},"description":{},"experimentCount":{"type":"long"},"featureCount":{"type":"long"},"lastUpdatedTime":{"type":"timestamp"},"launchCount":{"type":"long"},"name":{},"status":{},"tags":{"shape":"Sy"}}}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"Sy"}}}},"PutProjectEvents":{"http":{"requestUri":"/events/projects/{project}","responseCode":200},"input":{"type":"structure","required":["events","project"],"members":{"events":{"type":"list","member":{"type":"structure","required":["data","timestamp","type"],"members":{"data":{"jsonvalue":true},"timestamp":{"type":"timestamp"},"type":{}}}},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"eventResults":{"type":"list","member":{"type":"structure","members":{"errorCode":{},"errorMessage":{},"eventId":{}}}},"failedEventCount":{"type":"integer"}}},"endpoint":{"hostPrefix":"dataplane."}},"StartExperiment":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/start","responseCode":200},"input":{"type":"structure","required":["analysisCompleteTime","experiment","project"],"members":{"analysisCompleteTime":{"type":"timestamp"},"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","members":{"startedTime":{"type":"timestamp"}}}},"StartLaunch":{"http":{"requestUri":"/projects/{project}/launches/{launch}/start","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"StopExperiment":{"http":{"requestUri":"/projects/{project}/experiments/{experiment}/cancel","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"desiredState":{},"experiment":{"location":"uri","locationName":"experiment"},"project":{"location":"uri","locationName":"project"},"reason":{}}},"output":{"type":"structure","members":{"endedTime":{"type":"timestamp"}}}},"StopLaunch":{"http":{"requestUri":"/projects/{project}/launches/{launch}/cancel","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"desiredState":{},"launch":{"location":"uri","locationName":"launch"},"project":{"location":"uri","locationName":"project"},"reason":{}}},"output":{"type":"structure","members":{"endedTime":{"type":"timestamp"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{}},"idempotent":true},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateExperiment":{"http":{"method":"PATCH","requestUri":"/projects/{project}/experiments/{experiment}","responseCode":200},"input":{"type":"structure","required":["experiment","project"],"members":{"description":{},"experiment":{"location":"uri","locationName":"experiment"},"metricGoals":{"shape":"Sk"},"onlineAbConfig":{"shape":"St"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"samplingRate":{"type":"long"},"treatments":{"shape":"S11"}}},"output":{"type":"structure","required":["experiment"],"members":{"experiment":{"shape":"S15"}}}},"UpdateFeature":{"http":{"method":"PATCH","requestUri":"/projects/{project}/features/{feature}","responseCode":200},"input":{"type":"structure","required":["feature","project"],"members":{"addOrUpdateVariations":{"shape":"S1n"},"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationStrategy":{},"feature":{"location":"uri","locationName":"feature"},"project":{"location":"uri","locationName":"project"},"removeVariations":{"type":"list","member":{}}}},"output":{"type":"structure","required":["feature"],"members":{"feature":{"shape":"S1q"}}}},"UpdateLaunch":{"http":{"method":"PATCH","requestUri":"/projects/{project}/launches/{launch}","responseCode":200},"input":{"type":"structure","required":["launch","project"],"members":{"description":{},"groups":{"shape":"S21"},"launch":{"location":"uri","locationName":"launch"},"metricMonitors":{"shape":"S24"},"project":{"location":"uri","locationName":"project"},"randomizationSalt":{},"scheduledSplitsConfig":{"shape":"S27"}}},"output":{"type":"structure","required":["launch"],"members":{"launch":{"shape":"S2c"}}}},"UpdateProject":{"http":{"method":"PATCH","requestUri":"/projects/{project}","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"description":{},"project":{"location":"uri","locationName":"project"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}},"UpdateProjectDataDelivery":{"http":{"method":"PATCH","requestUri":"/projects/{project}/data-delivery","responseCode":200},"input":{"type":"structure","required":["project"],"members":{"cloudWatchLogs":{"shape":"S2q"},"project":{"location":"uri","locationName":"project"},"s3Destination":{"shape":"S2s"}}},"output":{"type":"structure","required":["project"],"members":{"project":{"shape":"S2x"}}}}},"shapes":{"Sd":{"type":"structure","members":{"boolValue":{"type":"boolean"},"doubleValue":{"type":"double"},"longValue":{"type":"long"},"stringValue":{}},"union":true},"Sk":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"desiredChange":{},"metricDefinition":{"shape":"Sn"}}}},"Sn":{"type":"structure","required":["entityIdKey","name","valueKey"],"members":{"entityIdKey":{},"eventPattern":{"jsonvalue":true},"name":{},"unitLabel":{},"valueKey":{}}},"St":{"type":"structure","members":{"controlTreatmentName":{},"treatmentWeights":{"shape":"Sv"}}},"Sv":{"type":"map","key":{},"value":{"type":"long"}},"Sy":{"type":"map","key":{},"value":{}},"S11":{"type":"list","member":{"type":"structure","required":["feature","name","variation"],"members":{"description":{},"feature":{},"name":{},"variation":{}}}},"S15":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status","type"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"description":{},"execution":{"type":"structure","members":{"endedTime":{"type":"timestamp"},"startedTime":{"type":"timestamp"}}},"lastUpdatedTime":{"type":"timestamp"},"metricGoals":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"desiredChange":{},"metricDefinition":{"shape":"S1b"}}}},"name":{},"onlineAbDefinition":{"type":"structure","members":{"controlTreatmentName":{},"treatmentWeights":{"shape":"Sv"}}},"project":{},"randomizationSalt":{},"samplingRate":{"type":"long"},"schedule":{"type":"structure","members":{"analysisCompleteTime":{"type":"timestamp"}}},"status":{},"statusReason":{},"tags":{"shape":"Sy"},"treatments":{"type":"list","member":{"type":"structure","required":["name"],"members":{"description":{},"featureVariations":{"shape":"S1i"},"name":{}}}},"type":{}}},"S1b":{"type":"structure","members":{"entityIdKey":{},"eventPattern":{"jsonvalue":true},"name":{},"unitLabel":{},"valueKey":{}}},"S1i":{"type":"map","key":{},"value":{}},"S1l":{"type":"map","key":{},"value":{}},"S1n":{"type":"list","member":{"type":"structure","required":["name","value"],"members":{"name":{},"value":{"shape":"Sd"}}}},"S1q":{"type":"structure","required":["arn","createdTime","evaluationStrategy","lastUpdatedTime","name","status","valueType","variations"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"defaultVariation":{},"description":{},"entityOverrides":{"shape":"S1l"},"evaluationRules":{"shape":"S1s"},"evaluationStrategy":{},"lastUpdatedTime":{"type":"timestamp"},"name":{},"project":{},"status":{},"tags":{"shape":"Sy"},"valueType":{},"variations":{"type":"list","member":{"type":"structure","members":{"name":{},"value":{"shape":"Sd"}}}}}},"S1s":{"type":"list","member":{"type":"structure","required":["type"],"members":{"name":{},"type":{}}}},"S21":{"type":"list","member":{"type":"structure","required":["feature","name","variation"],"members":{"description":{},"feature":{},"name":{},"variation":{}}}},"S24":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"metricDefinition":{"shape":"Sn"}}}},"S27":{"type":"structure","required":["steps"],"members":{"steps":{"type":"list","member":{"type":"structure","required":["groupWeights","startTime"],"members":{"groupWeights":{"shape":"S2a"},"startTime":{"type":"timestamp"}}}}}},"S2a":{"type":"map","key":{},"value":{"type":"long"}},"S2c":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status","type"],"members":{"arn":{},"createdTime":{"type":"timestamp"},"description":{},"execution":{"type":"structure","members":{"endedTime":{"type":"timestamp"},"startedTime":{"type":"timestamp"}}},"groups":{"type":"list","member":{"type":"structure","required":["featureVariations","name"],"members":{"description":{},"featureVariations":{"shape":"S1i"},"name":{}}}},"lastUpdatedTime":{"type":"timestamp"},"metricMonitors":{"type":"list","member":{"type":"structure","required":["metricDefinition"],"members":{"metricDefinition":{"shape":"S1b"}}}},"name":{},"project":{},"randomizationSalt":{},"scheduledSplitsDefinition":{"type":"structure","members":{"steps":{"type":"list","member":{"type":"structure","required":["startTime"],"members":{"groupWeights":{"shape":"S2a"},"startTime":{"type":"timestamp"}}}}}},"status":{},"statusReason":{},"tags":{"shape":"Sy"},"type":{}}},"S2q":{"type":"structure","members":{"logGroup":{}}},"S2s":{"type":"structure","members":{"bucket":{},"prefix":{}}},"S2x":{"type":"structure","required":["arn","createdTime","lastUpdatedTime","name","status"],"members":{"activeExperimentCount":{"type":"long"},"activeLaunchCount":{"type":"long"},"arn":{},"createdTime":{"type":"timestamp"},"dataDelivery":{"type":"structure","members":{"cloudWatchLogs":{"type":"structure","members":{"logGroup":{}}},"s3Destination":{"type":"structure","members":{"bucket":{},"prefix":{}}}}},"description":{},"experimentCount":{"type":"long"},"featureCount":{"type":"long"},"lastUpdatedTime":{"type":"timestamp"},"launchCount":{"type":"long"},"name":{},"status":{},"tags":{"shape":"Sy"}}}}}
|
|
55463
55463
|
|
|
55464
55464
|
/***/ }),
|
|
55465
55465
|
/* 1100 */
|
package/dist/aws-sdk.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// AWS SDK for JavaScript v2.
|
|
1
|
+
// AWS SDK for JavaScript v2.1131.0
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
|
4
4
|
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
|
|
@@ -238532,7 +238532,7 @@ AWS.util.update(AWS, {
|
|
|
238532
238532
|
/**
|
|
238533
238533
|
* @constant
|
|
238534
238534
|
*/
|
|
238535
|
-
VERSION: '2.
|
|
238535
|
+
VERSION: '2.1131.0',
|
|
238536
238536
|
|
|
238537
238537
|
/**
|
|
238538
238538
|
* @api private
|
|
@@ -259987,7 +259987,7 @@ var LRUCache = /** @class */ (function () {
|
|
|
259987
259987
|
}());
|
|
259988
259988
|
exports.LRUCache = LRUCache;
|
|
259989
259989
|
},{}],452:[function(require,module,exports){
|
|
259990
|
-
// AWS SDK for JavaScript v2.
|
|
259990
|
+
// AWS SDK for JavaScript v2.1131.0
|
|
259991
259991
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
259992
259992
|
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
|
|
259993
259993
|
require('./browser_loader');
|