aws-sdk 2.998.0 → 2.999.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 +6 -1
- package/README.md +1 -1
- package/apis/apprunner-2020-05-15.min.json +10 -10
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/apis/synthetics-2017-10-11.min.json +39 -9
- package/clients/apprunner.d.ts +55 -54
- package/clients/ssm.d.ts +7 -3
- package/clients/synthetics.d.ts +40 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +4 -4
- package/dist/aws-sdk.js +6 -3
- package/dist/aws-sdk.min.js +17 -17
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/ssm.d.ts
CHANGED
|
@@ -1230,7 +1230,7 @@ declare namespace SSM {
|
|
|
1230
1230
|
*/
|
|
1231
1231
|
DocumentVersion?: DocumentVersion;
|
|
1232
1232
|
/**
|
|
1233
|
-
* The instances targeted by the request to create an association.
|
|
1233
|
+
* The instances targeted by the request to create an association. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *.
|
|
1234
1234
|
*/
|
|
1235
1235
|
Targets?: Targets;
|
|
1236
1236
|
/**
|
|
@@ -2495,7 +2495,7 @@ declare namespace SSM {
|
|
|
2495
2495
|
*/
|
|
2496
2496
|
Parameters?: Parameters;
|
|
2497
2497
|
/**
|
|
2498
|
-
* The targets for the association. You can target instances by using tags, Amazon Web Services resource groups, all instances in an Amazon Web Services account, or individual instance IDs. For more information about choosing targets for an association, see Using targets and rate controls with State Manager associations in the Amazon Web Services Systems Manager User Guide.
|
|
2498
|
+
* The targets for the association. You can target instances by using tags, Amazon Web Services resource groups, all instances in an Amazon Web Services account, or individual instance IDs. You can target all instances in an Amazon Web Services account by specifying the InstanceIds key with a value of *. For more information about choosing targets for an association, see Using targets and rate controls with State Manager associations in the Amazon Web Services Systems Manager User Guide.
|
|
2499
2499
|
*/
|
|
2500
2500
|
Targets?: Targets;
|
|
2501
2501
|
/**
|
|
@@ -8380,7 +8380,7 @@ declare namespace SSM {
|
|
|
8380
8380
|
export type S3KeyPrefix = string;
|
|
8381
8381
|
export interface S3OutputLocation {
|
|
8382
8382
|
/**
|
|
8383
|
-
*
|
|
8383
|
+
* The Amazon Web Services Region of the S3 bucket.
|
|
8384
8384
|
*/
|
|
8385
8385
|
OutputS3Region?: S3Region;
|
|
8386
8386
|
/**
|
|
@@ -8732,6 +8732,10 @@ declare namespace SSM {
|
|
|
8732
8732
|
* The user-provided idempotency token. The token must be unique, is case insensitive, enforces the UUID format, and can't be reused.
|
|
8733
8733
|
*/
|
|
8734
8734
|
ClientToken?: IdempotencyToken;
|
|
8735
|
+
/**
|
|
8736
|
+
* Indicates whether the change request can be approved automatically without the need for manual approvals. If AutoApprovable is enabled in a change template, then setting AutoApprove to true in StartChangeRequestExecution creates a change request that bypasses approver review. Change Calendar restrictions are not bypassed in this scenario. If the state of an associated calendar is CLOSED, change freeze approvers must still grant permission for this change request to run. If they don't, the change won't be processed until the calendar state is again OPEN.
|
|
8737
|
+
*/
|
|
8738
|
+
AutoApprove?: Boolean;
|
|
8735
8739
|
/**
|
|
8736
8740
|
* Information about the Automation runbooks that are run during the runbook workflow. The Automation runbooks specified for the runbook workflow can't run until all required approvals for the change request have been received.
|
|
8737
8741
|
*/
|
package/clients/synthetics.d.ts
CHANGED
|
@@ -117,6 +117,18 @@ declare class Synthetics extends Service {
|
|
|
117
117
|
updateCanary(callback?: (err: AWSError, data: Synthetics.Types.UpdateCanaryResponse) => void): Request<Synthetics.Types.UpdateCanaryResponse, AWSError>;
|
|
118
118
|
}
|
|
119
119
|
declare namespace Synthetics {
|
|
120
|
+
export interface ArtifactConfigInput {
|
|
121
|
+
/**
|
|
122
|
+
* A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. Artifact encryption functionality is available only for canaries that use Synthetics runtime version syn-nodejs-puppeteer-3.3 or later. For more information, see Encrypting canary artifacts
|
|
123
|
+
*/
|
|
124
|
+
S3Encryption?: S3EncryptionConfig;
|
|
125
|
+
}
|
|
126
|
+
export interface ArtifactConfigOutput {
|
|
127
|
+
/**
|
|
128
|
+
* A structure that contains the configuration of encryption settings for canary artifacts that are stored in Amazon S3.
|
|
129
|
+
*/
|
|
130
|
+
S3Encryption?: S3EncryptionConfig;
|
|
131
|
+
}
|
|
120
132
|
export interface BaseScreenshot {
|
|
121
133
|
/**
|
|
122
134
|
* The name of the screenshot. This is generated the first time the canary is run after the UpdateCanary operation that specified for this canary to perform visual monitoring.
|
|
@@ -189,6 +201,10 @@ declare namespace Synthetics {
|
|
|
189
201
|
* The list of key-value pairs that are associated with the canary.
|
|
190
202
|
*/
|
|
191
203
|
Tags?: TagMap;
|
|
204
|
+
/**
|
|
205
|
+
* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
|
|
206
|
+
*/
|
|
207
|
+
ArtifactConfig?: ArtifactConfigOutput;
|
|
192
208
|
}
|
|
193
209
|
export type CanaryArn = string;
|
|
194
210
|
export interface CanaryCodeInput {
|
|
@@ -414,6 +430,10 @@ declare namespace Synthetics {
|
|
|
414
430
|
* A list of key-value pairs to associate with the canary. You can associate as many as 50 tags with a canary. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only the resources that have certain tag values.
|
|
415
431
|
*/
|
|
416
432
|
Tags?: TagMap;
|
|
433
|
+
/**
|
|
434
|
+
* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
|
|
435
|
+
*/
|
|
436
|
+
ArtifactConfig?: ArtifactConfigInput;
|
|
417
437
|
}
|
|
418
438
|
export interface CreateCanaryResponse {
|
|
419
439
|
/**
|
|
@@ -489,6 +509,7 @@ declare namespace Synthetics {
|
|
|
489
509
|
*/
|
|
490
510
|
NextToken?: Token;
|
|
491
511
|
}
|
|
512
|
+
export type EncryptionMode = "SSE_S3"|"SSE_KMS"|string;
|
|
492
513
|
export type EnvironmentVariableName = string;
|
|
493
514
|
export type EnvironmentVariableValue = string;
|
|
494
515
|
export type EnvironmentVariablesMap = {[key: string]: EnvironmentVariableValue};
|
|
@@ -529,6 +550,7 @@ declare namespace Synthetics {
|
|
|
529
550
|
*/
|
|
530
551
|
NextToken?: Token;
|
|
531
552
|
}
|
|
553
|
+
export type KmsKeyArn = string;
|
|
532
554
|
export interface ListTagsForResourceRequest {
|
|
533
555
|
/**
|
|
534
556
|
* The ARN of the canary that you want to view tags for. The ARN format of a canary is arn:aws:synthetics:Region:account-id:canary:canary-name .
|
|
@@ -568,6 +590,16 @@ declare namespace Synthetics {
|
|
|
568
590
|
DeprecationDate?: Timestamp;
|
|
569
591
|
}
|
|
570
592
|
export type RuntimeVersionList = RuntimeVersion[];
|
|
593
|
+
export interface S3EncryptionConfig {
|
|
594
|
+
/**
|
|
595
|
+
* The encryption method to use for artifacts created by this canary. Specify SSE_S3 to use server-side encryption (SSE) with an Amazon S3-managed key. Specify SSE-KMS to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services-managed KMS key is used.
|
|
596
|
+
*/
|
|
597
|
+
EncryptionMode?: EncryptionMode;
|
|
598
|
+
/**
|
|
599
|
+
* The ARN of the customer-managed KMS key to use, if you specify SSE-KMS for EncryptionMode
|
|
600
|
+
*/
|
|
601
|
+
KmsKeyArn?: KmsKeyArn;
|
|
602
|
+
}
|
|
571
603
|
export type SecurityGroupId = string;
|
|
572
604
|
export type SecurityGroupIds = SecurityGroupId[];
|
|
573
605
|
export interface StartCanaryRequest {
|
|
@@ -661,6 +693,14 @@ declare namespace Synthetics {
|
|
|
661
693
|
* Defines the screenshots to use as the baseline for comparisons during visual monitoring comparisons during future runs of this canary. If you omit this parameter, no changes are made to any baseline screenshots that the canary might be using already. Visual monitoring is supported only on canaries running the syn-puppeteer-node-3.2 runtime or later. For more information, see Visual monitoring and Visual monitoring blueprint
|
|
662
694
|
*/
|
|
663
695
|
VisualReference?: VisualReferenceInput;
|
|
696
|
+
/**
|
|
697
|
+
* The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary. Artifacts include the log file, screenshots, and HAR files. The name of the S3 bucket can't include a period (.).
|
|
698
|
+
*/
|
|
699
|
+
ArtifactS3Location?: String;
|
|
700
|
+
/**
|
|
701
|
+
* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
|
|
702
|
+
*/
|
|
703
|
+
ArtifactConfig?: ArtifactConfigInput;
|
|
664
704
|
}
|
|
665
705
|
export interface UpdateCanaryResponse {
|
|
666
706
|
}
|