aws-sdk 2.1366.0 → 2.1367.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 +12 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +936 -921
- package/apis/emr-containers-2020-10-01.min.json +52 -0
- package/apis/guardduty-2017-11-28.min.json +100 -69
- package/apis/iotdeviceadvisor-2020-09-18.min.json +13 -4
- package/apis/kafka-2018-11-14.min.json +570 -89
- package/apis/kafka-2018-11-14.paginators.json +12 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +4 -2
- package/clients/ec2.d.ts +75 -52
- package/clients/emrcontainers.d.ts +61 -0
- package/clients/guardduty.d.ts +32 -2
- package/clients/iotdeviceadvisor.d.ts +16 -3
- package/clients/kafka.d.ts +634 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/osis.d.ts +26 -26
- package/clients/qldb.d.ts +27 -27
- package/clients/sagemaker.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -10
- package/dist/aws-sdk.js +946 -928
- package/dist/aws-sdk.min.js +72 -72
- package/lib/core.js +1 -1
- package/lib/services/sqs.js +3 -2
- package/package.json +1 -1
| @@ -99,6 +99,14 @@ declare class EMRcontainers extends Service { | |
| 99 99 | 
             
               * Displays detailed information about a specified virtual cluster. Virtual cluster is a managed entity on Amazon EMR on EKS. You can create, describe, list and delete virtual clusters. They do not consume any additional resource in your system. A single virtual cluster maps to a single Kubernetes namespace. Given this relationship, you can model virtual clusters the same way you model Kubernetes namespaces to meet your requirements.
         | 
| 100 100 | 
             
               */
         | 
| 101 101 | 
             
              describeVirtualCluster(callback?: (err: AWSError, data: EMRcontainers.Types.DescribeVirtualClusterResponse) => void): Request<EMRcontainers.Types.DescribeVirtualClusterResponse, AWSError>;
         | 
| 102 | 
            +
              /**
         | 
| 103 | 
            +
               * Generate a session token to connect to a managed endpoint. 
         | 
| 104 | 
            +
               */
         | 
| 105 | 
            +
              getManagedEndpointSessionCredentials(params: EMRcontainers.Types.GetManagedEndpointSessionCredentialsRequest, callback?: (err: AWSError, data: EMRcontainers.Types.GetManagedEndpointSessionCredentialsResponse) => void): Request<EMRcontainers.Types.GetManagedEndpointSessionCredentialsResponse, AWSError>;
         | 
| 106 | 
            +
              /**
         | 
| 107 | 
            +
               * Generate a session token to connect to a managed endpoint. 
         | 
| 108 | 
            +
               */
         | 
| 109 | 
            +
              getManagedEndpointSessionCredentials(callback?: (err: AWSError, data: EMRcontainers.Types.GetManagedEndpointSessionCredentialsResponse) => void): Request<EMRcontainers.Types.GetManagedEndpointSessionCredentialsResponse, AWSError>;
         | 
| 102 110 | 
             
              /**
         | 
| 103 111 | 
             
               * Lists job runs based on a set of parameters. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.
         | 
| 104 112 | 
             
               */
         | 
| @@ -383,6 +391,13 @@ declare namespace EMRcontainers { | |
| 383 391 | 
             
                 */
         | 
| 384 392 | 
             
                arn?: VirtualClusterArn;
         | 
| 385 393 | 
             
              }
         | 
| 394 | 
            +
              export type CredentialType = string;
         | 
| 395 | 
            +
              export interface Credentials {
         | 
| 396 | 
            +
                /**
         | 
| 397 | 
            +
                 * The actual session token being returned.
         | 
| 398 | 
            +
                 */
         | 
| 399 | 
            +
                token?: Token;
         | 
| 400 | 
            +
              }
         | 
| 386 401 | 
             
              export type _Date = Date;
         | 
| 387 402 | 
             
              export interface DeleteJobTemplateRequest {
         | 
| 388 403 | 
             
                /**
         | 
| @@ -574,6 +589,50 @@ declare namespace EMRcontainers { | |
| 574 589 | 
             
              export type EntryPointArguments = EntryPointArgument[];
         | 
| 575 590 | 
             
              export type EntryPointPath = string;
         | 
| 576 591 | 
             
              export type FailureReason = "INTERNAL_ERROR"|"USER_ERROR"|"VALIDATION_ERROR"|"CLUSTER_UNAVAILABLE"|string;
         | 
| 592 | 
            +
              export interface GetManagedEndpointSessionCredentialsRequest {
         | 
| 593 | 
            +
                /**
         | 
| 594 | 
            +
                 * The ARN of the managed endpoint for which the request is submitted. 
         | 
| 595 | 
            +
                 */
         | 
| 596 | 
            +
                endpointIdentifier: String2048;
         | 
| 597 | 
            +
                /**
         | 
| 598 | 
            +
                 * The ARN of the Virtual Cluster which the Managed Endpoint belongs to. 
         | 
| 599 | 
            +
                 */
         | 
| 600 | 
            +
                virtualClusterIdentifier: String2048;
         | 
| 601 | 
            +
                /**
         | 
| 602 | 
            +
                 * The IAM Execution Role ARN that will be used by the job run. 
         | 
| 603 | 
            +
                 */
         | 
| 604 | 
            +
                executionRoleArn: IAMRoleArn;
         | 
| 605 | 
            +
                /**
         | 
| 606 | 
            +
                 * Type of the token requested. Currently supported and default value of this field is “TOKEN.”
         | 
| 607 | 
            +
                 */
         | 
| 608 | 
            +
                credentialType: CredentialType;
         | 
| 609 | 
            +
                /**
         | 
| 610 | 
            +
                 * Duration in seconds for which the session token is valid. The default duration is 15 minutes and the maximum is 12 hours.
         | 
| 611 | 
            +
                 */
         | 
| 612 | 
            +
                durationInSeconds?: JavaInteger;
         | 
| 613 | 
            +
                /**
         | 
| 614 | 
            +
                 * String identifier used to separate sections of the execution logs uploaded to S3.
         | 
| 615 | 
            +
                 */
         | 
| 616 | 
            +
                logContext?: LogContext;
         | 
| 617 | 
            +
                /**
         | 
| 618 | 
            +
                 * The client idempotency token of the job run request.
         | 
| 619 | 
            +
                 */
         | 
| 620 | 
            +
                clientToken?: ClientToken;
         | 
| 621 | 
            +
              }
         | 
| 622 | 
            +
              export interface GetManagedEndpointSessionCredentialsResponse {
         | 
| 623 | 
            +
                /**
         | 
| 624 | 
            +
                 * The identifier of the session token returned.
         | 
| 625 | 
            +
                 */
         | 
| 626 | 
            +
                id?: ResourceIdString;
         | 
| 627 | 
            +
                /**
         | 
| 628 | 
            +
                 * The structure containing the session credentials.
         | 
| 629 | 
            +
                 */
         | 
| 630 | 
            +
                credentials?: Credentials;
         | 
| 631 | 
            +
                /**
         | 
| 632 | 
            +
                 * The date and time when the session token will expire.
         | 
| 633 | 
            +
                 */
         | 
| 634 | 
            +
                expiresAt?: _Date;
         | 
| 635 | 
            +
              }
         | 
| 577 636 | 
             
              export type IAMRoleArn = string;
         | 
| 578 637 | 
             
              export type JavaInteger = number;
         | 
| 579 638 | 
             
              export type JobArn = string;
         | 
| @@ -889,6 +948,7 @@ declare namespace EMRcontainers { | |
| 889 948 | 
             
                 */
         | 
| 890 949 | 
             
                nextToken?: NextToken;
         | 
| 891 950 | 
             
              }
         | 
| 951 | 
            +
              export type LogContext = string;
         | 
| 892 952 | 
             
              export type LogGroupName = string;
         | 
| 893 953 | 
             
              export interface MonitoringConfiguration {
         | 
| 894 954 | 
             
                /**
         | 
| @@ -1097,6 +1157,7 @@ declare namespace EMRcontainers { | |
| 1097 1157 | 
             
              export type TemplateParameterDataType = "NUMBER"|"STRING"|string;
         | 
| 1098 1158 | 
             
              export type TemplateParameterInputMap = {[key: string]: String1024};
         | 
| 1099 1159 | 
             
              export type TemplateParameterName = string;
         | 
| 1160 | 
            +
              export type Token = string;
         | 
| 1100 1161 | 
             
              export interface UntagResourceRequest {
         | 
| 1101 1162 | 
             
                /**
         | 
| 1102 1163 | 
             
                 * The ARN of resources.
         | 
    
        package/clients/guardduty.d.ts
    CHANGED
    
    | @@ -435,6 +435,14 @@ declare class GuardDuty extends Service { | |
| 435 435 | 
             
               * Lists the ThreatIntelSets of the GuardDuty service specified by the detector ID. If you use this operation from a member account, the ThreatIntelSets associated with the administrator account are returned.
         | 
| 436 436 | 
             
               */
         | 
| 437 437 | 
             
              listThreatIntelSets(callback?: (err: AWSError, data: GuardDuty.Types.ListThreatIntelSetsResponse) => void): Request<GuardDuty.Types.ListThreatIntelSetsResponse, AWSError>;
         | 
| 438 | 
            +
              /**
         | 
| 439 | 
            +
               * Initiates the malware scan. Invoking this API will automatically create the Service-linked role  in the corresponding account.
         | 
| 440 | 
            +
               */
         | 
| 441 | 
            +
              startMalwareScan(params: GuardDuty.Types.StartMalwareScanRequest, callback?: (err: AWSError, data: GuardDuty.Types.StartMalwareScanResponse) => void): Request<GuardDuty.Types.StartMalwareScanResponse, AWSError>;
         | 
| 442 | 
            +
              /**
         | 
| 443 | 
            +
               * Initiates the malware scan. Invoking this API will automatically create the Service-linked role  in the corresponding account.
         | 
| 444 | 
            +
               */
         | 
| 445 | 
            +
              startMalwareScan(callback?: (err: AWSError, data: GuardDuty.Types.StartMalwareScanResponse) => void): Request<GuardDuty.Types.StartMalwareScanResponse, AWSError>;
         | 
| 438 446 | 
             
              /**
         | 
| 439 447 | 
             
               * Turns on GuardDuty monitoring of the specified member accounts. Use this operation to restart monitoring of accounts that you stopped monitoring with the StopMonitoringMembers operation.
         | 
| 440 448 | 
             
               */
         | 
| @@ -1227,7 +1235,7 @@ declare namespace GuardDuty { | |
| 1227 1235 | 
             
                ThreatIntelSetId: String;
         | 
| 1228 1236 | 
             
              }
         | 
| 1229 1237 | 
             
              export type Criterion = {[key: string]: Condition};
         | 
| 1230 | 
            -
              export type CriterionKey = "EC2_INSTANCE_ARN"|"SCAN_ID"|"ACCOUNT_ID"|"GUARDDUTY_FINDING_ID"|"SCAN_START_TIME"|"SCAN_STATUS"|string;
         | 
| 1238 | 
            +
              export type CriterionKey = "EC2_INSTANCE_ARN"|"SCAN_ID"|"ACCOUNT_ID"|"GUARDDUTY_FINDING_ID"|"SCAN_START_TIME"|"SCAN_STATUS"|"SCAN_TYPE"|string;
         | 
| 1231 1239 | 
             
              export interface DNSLogsConfigurationResult {
         | 
| 1232 1240 | 
             
                /**
         | 
| 1233 1241 | 
             
                 * Denotes whether DNS logs is enabled as a data source.
         | 
| @@ -1707,6 +1715,10 @@ declare namespace GuardDuty { | |
| 1707 1715 | 
             
                 * Contains a complete view providing malware scan result details.
         | 
| 1708 1716 | 
             
                 */
         | 
| 1709 1717 | 
             
                ScanDetections?: ScanDetections;
         | 
| 1718 | 
            +
                /**
         | 
| 1719 | 
            +
                 * Specifies the scan type that invoked the malware scan.
         | 
| 1720 | 
            +
                 */
         | 
| 1721 | 
            +
                ScanType?: ScanType;
         | 
| 1710 1722 | 
             
              }
         | 
| 1711 1723 | 
             
              export interface EbsVolumesResult {
         | 
| 1712 1724 | 
             
                /**
         | 
| @@ -3625,6 +3637,7 @@ declare namespace GuardDuty { | |
| 3625 3637 | 
             
                 */
         | 
| 3626 3638 | 
             
                LambdaDetails?: LambdaDetails;
         | 
| 3627 3639 | 
             
              }
         | 
| 3640 | 
            +
              export type ResourceArn = string;
         | 
| 3628 3641 | 
             
              export interface ResourceDetails {
         | 
| 3629 3642 | 
             
                /**
         | 
| 3630 3643 | 
             
                 * InstanceArn that was scanned in the scan entry.
         | 
| @@ -3829,6 +3842,10 @@ declare namespace GuardDuty { | |
| 3829 3842 | 
             
                 * List of volumes that were attached to the original instance to be scanned.
         | 
| 3830 3843 | 
             
                 */
         | 
| 3831 3844 | 
             
                AttachedVolumes?: VolumeDetails;
         | 
| 3845 | 
            +
                /**
         | 
| 3846 | 
            +
                 * Specifies the scan type that invoked the malware scan.
         | 
| 3847 | 
            +
                 */
         | 
| 3848 | 
            +
                ScanType?: ScanType;
         | 
| 3832 3849 | 
             
              }
         | 
| 3833 3850 | 
             
              export interface ScanCondition {
         | 
| 3834 3851 | 
             
                /**
         | 
| @@ -3913,7 +3930,7 @@ declare namespace GuardDuty { | |
| 3913 3930 | 
             
                 */
         | 
| 3914 3931 | 
             
                ScanResult?: ScanResult;
         | 
| 3915 3932 | 
             
              }
         | 
| 3916 | 
            -
              export type ScanStatus = "RUNNING"|"COMPLETED"|"FAILED"|string;
         | 
| 3933 | 
            +
              export type ScanStatus = "RUNNING"|"COMPLETED"|"FAILED"|"SKIPPED"|string;
         | 
| 3917 3934 | 
             
              export interface ScanThreatName {
         | 
| 3918 3935 | 
             
                /**
         | 
| 3919 3936 | 
             
                 * The name of the identified threat.
         | 
| @@ -3933,6 +3950,7 @@ declare namespace GuardDuty { | |
| 3933 3950 | 
             
                FilePaths?: FilePaths;
         | 
| 3934 3951 | 
             
              }
         | 
| 3935 3952 | 
             
              export type ScanThreatNames = ScanThreatName[];
         | 
| 3953 | 
            +
              export type ScanType = "GUARDDUTY_INITIATED"|"ON_DEMAND"|string;
         | 
| 3936 3954 | 
             
              export interface ScannedItemCount {
         | 
| 3937 3955 | 
             
                /**
         | 
| 3938 3956 | 
             
                 * Total GB of files scanned for malware.
         | 
| @@ -4045,6 +4063,18 @@ declare namespace GuardDuty { | |
| 4045 4063 | 
             
              }
         | 
| 4046 4064 | 
             
              export type SourceIps = String[];
         | 
| 4047 4065 | 
             
              export type Sources = String[];
         | 
| 4066 | 
            +
              export interface StartMalwareScanRequest {
         | 
| 4067 | 
            +
                /**
         | 
| 4068 | 
            +
                 * Amazon Resource Name (ARN) of the resource for which you invoked the API.
         | 
| 4069 | 
            +
                 */
         | 
| 4070 | 
            +
                ResourceArn: ResourceArn;
         | 
| 4071 | 
            +
              }
         | 
| 4072 | 
            +
              export interface StartMalwareScanResponse {
         | 
| 4073 | 
            +
                /**
         | 
| 4074 | 
            +
                 * A unique identifier that gets generated when you invoke the API without any error. Each malware scan has a corresponding scan ID. Using this scan ID, you can monitor the status of your malware scan.
         | 
| 4075 | 
            +
                 */
         | 
| 4076 | 
            +
                ScanId?: NonEmptyString;
         | 
| 4077 | 
            +
              }
         | 
| 4048 4078 | 
             
              export interface StartMonitoringMembersRequest {
         | 
| 4049 4079 | 
             
                /**
         | 
| 4050 4080 | 
             
                 * The unique ID of the detector of the GuardDuty administrator account associated with the member accounts to monitor.
         | 
| @@ -126,6 +126,7 @@ declare class IotDeviceAdvisor extends Service { | |
| 126 126 | 
             
            }
         | 
| 127 127 | 
             
            declare namespace IotDeviceAdvisor {
         | 
| 128 128 | 
             
              export type AmazonResourceName = string;
         | 
| 129 | 
            +
              export type AuthenticationMethod = "X509ClientCertificate"|"SignatureVersion4"|string;
         | 
| 129 130 | 
             
              export interface CreateSuiteDefinitionRequest {
         | 
| 130 131 | 
             
                /**
         | 
| 131 132 | 
             
                 * Creates a Device Advisor test suite with suite definition configuration.
         | 
| @@ -164,13 +165,17 @@ declare namespace IotDeviceAdvisor { | |
| 164 165 | 
             
              }
         | 
| 165 166 | 
             
              export interface DeviceUnderTest {
         | 
| 166 167 | 
             
                /**
         | 
| 167 | 
            -
                 * Lists  | 
| 168 | 
            +
                 * Lists device's thing ARN.
         | 
| 168 169 | 
             
                 */
         | 
| 169 170 | 
             
                thingArn?: AmazonResourceName;
         | 
| 170 171 | 
             
                /**
         | 
| 171 | 
            -
                 * Lists  | 
| 172 | 
            +
                 * Lists device's certificate ARN.
         | 
| 172 173 | 
             
                 */
         | 
| 173 174 | 
             
                certificateArn?: AmazonResourceName;
         | 
| 175 | 
            +
                /**
         | 
| 176 | 
            +
                 * Lists device's role ARN.
         | 
| 177 | 
            +
                 */
         | 
| 178 | 
            +
                deviceRoleArn?: AmazonResourceName;
         | 
| 174 179 | 
             
              }
         | 
| 175 180 | 
             
              export type DeviceUnderTestList = DeviceUnderTest[];
         | 
| 176 181 | 
             
              export type Endpoint = string;
         | 
| @@ -185,6 +190,14 @@ declare namespace IotDeviceAdvisor { | |
| 185 190 | 
             
                 * The certificate ARN of the device. This is an optional parameter.
         | 
| 186 191 | 
             
                 */
         | 
| 187 192 | 
             
                certificateArn?: AmazonResourceName;
         | 
| 193 | 
            +
                /**
         | 
| 194 | 
            +
                 * The device role ARN of the device. This is an optional parameter.
         | 
| 195 | 
            +
                 */
         | 
| 196 | 
            +
                deviceRoleArn?: AmazonResourceName;
         | 
| 197 | 
            +
                /**
         | 
| 198 | 
            +
                 * The authentication method used during the device connection.
         | 
| 199 | 
            +
                 */
         | 
| 200 | 
            +
                authenticationMethod?: AuthenticationMethod;
         | 
| 188 201 | 
             
              }
         | 
| 189 202 | 
             
              export interface GetEndpointResponse {
         | 
| 190 203 | 
             
                /**
         | 
| @@ -389,7 +402,7 @@ declare namespace IotDeviceAdvisor { | |
| 389 402 | 
             
              export type LogUrl = string;
         | 
| 390 403 | 
             
              export type MaxResults = number;
         | 
| 391 404 | 
             
              export type ParallelRun = boolean;
         | 
| 392 | 
            -
              export type Protocol = "MqttV3_1_1"|"MqttV5"|string;
         | 
| 405 | 
            +
              export type Protocol = "MqttV3_1_1"|"MqttV5"|"MqttV3_1_1_OverWebSocket"|"MqttV5_OverWebSocket"|string;
         | 
| 393 406 | 
             
              export type QualificationReportDownloadUrl = string;
         | 
| 394 407 | 
             
              export type RootGroup = string;
         | 
| 395 408 | 
             
              export type SelectedTestList = UUID[];
         |