aws-sdk 2.1366.0 → 2.1368.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 +22 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +104 -93
- package/apis/athena-2017-05-18.min.json +259 -50
- package/apis/athena-2017-05-18.paginators.json +5 -0
- package/apis/ec2-2016-11-15.min.json +936 -921
- package/apis/emr-containers-2020-10-01.min.json +52 -0
- package/apis/grafana-2020-08-18.min.json +1 -0
- package/apis/guardduty-2017-11-28.min.json +100 -69
- package/apis/iot-2015-05-28.min.json +289 -274
- 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/apis/rekognition-2016-06-27.min.json +112 -48
- package/apis/simspaceweaver-2022-10-28.min.json +52 -16
- package/clients/appflow.d.ts +14 -1
- package/clients/athena.d.ts +228 -10
- package/clients/directconnect.d.ts +2 -2
- package/clients/ec2.d.ts +75 -52
- package/clients/efs.d.ts +1 -1
- package/clients/emrcontainers.d.ts +61 -0
- package/clients/grafana.d.ts +4 -0
- package/clients/guardduty.d.ts +32 -2
- package/clients/iot.d.ts +21 -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/rekognition.d.ts +117 -0
- package/clients/sagemaker.d.ts +2 -2
- package/clients/simspaceweaver.d.ts +62 -21
- package/clients/wafv2.d.ts +57 -57
- package/clients/workspaces.d.ts +3 -3
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -17
- package/dist/aws-sdk.js +1611 -1300
- package/dist/aws-sdk.min.js +98 -98
- 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/grafana.d.ts
    CHANGED
    
    | @@ -289,6 +289,10 @@ declare namespace Grafana { | |
| 289 289 | 
             
                 * The configuration string for the workspace that you create. For more information about the format and configuration options available, see Working in your Grafana workspace.
         | 
| 290 290 | 
             
                 */
         | 
| 291 291 | 
             
                configuration?: OverridableConfigurationJson;
         | 
| 292 | 
            +
                /**
         | 
| 293 | 
            +
                 * Specifies the version of Grafana to support in the new workspace. Supported values are 8.4 and 9.4.
         | 
| 294 | 
            +
                 */
         | 
| 295 | 
            +
                grafanaVersion?: GrafanaVersion;
         | 
| 292 296 | 
             
                /**
         | 
| 293 297 | 
             
                 * Configuration for network access to your workspace. When this is configured, only listed IP addresses and VPC endpoints will be able to access your workspace. Standard Grafana authentication and authorization will still be required. If this is not configured, or is removed, then all IP addresses and VPC endpoints will be allowed. Standard Grafana authentication and authorization will still be required.
         | 
| 294 298 | 
             
                 */
         | 
    
        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.
         | 
    
        package/clients/iot.d.ts
    CHANGED
    
    | @@ -3454,6 +3454,10 @@ declare namespace Iot { | |
| 3454 3454 | 
             
                 * Metadata which can be used to manage the domain configuration.  For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..." 
         | 
| 3455 3455 | 
             
                 */
         | 
| 3456 3456 | 
             
                tags?: TagList;
         | 
| 3457 | 
            +
                /**
         | 
| 3458 | 
            +
                 * An object that specifies the TLS configuration for a domain.
         | 
| 3459 | 
            +
                 */
         | 
| 3460 | 
            +
                tlsConfig?: TlsConfig;
         | 
| 3457 3461 | 
             
              }
         | 
| 3458 3462 | 
             
              export interface CreateDomainConfigurationResponse {
         | 
| 3459 3463 | 
             
                /**
         | 
| @@ -3579,7 +3583,7 @@ declare namespace Iot { | |
| 3579 3583 | 
             
                 */
         | 
| 3580 3584 | 
             
                targets: JobTargets;
         | 
| 3581 3585 | 
             
                /**
         | 
| 3582 | 
            -
                 * An S3 link to the job document.  | 
| 3586 | 
            +
                 * An S3 link, or S3 object URL, to the job document. The link is an Amazon S3 object URL and is required if you don't specify a value for document. For example, --document-source https://s3.region-code.amazonaws.com/example-firmware/device-firmware.1.0. For more information, see Methods for accessing a bucket.
         | 
| 3583 3587 | 
             
                 */
         | 
| 3584 3588 | 
             
                documentSource?: JobDocumentSource;
         | 
| 3585 3589 | 
             
                /**
         | 
| @@ -4918,6 +4922,10 @@ declare namespace Iot { | |
| 4918 4922 | 
             
                 * The date and time the domain configuration's status was last changed.
         | 
| 4919 4923 | 
             
                 */
         | 
| 4920 4924 | 
             
                lastStatusChangeDate?: DateType;
         | 
| 4925 | 
            +
                /**
         | 
| 4926 | 
            +
                 * An object that specifies the TLS configuration for a domain.
         | 
| 4927 | 
            +
                 */
         | 
| 4928 | 
            +
                tlsConfig?: TlsConfig;
         | 
| 4921 4929 | 
             
              }
         | 
| 4922 4930 | 
             
              export interface DescribeEndpointRequest {
         | 
| 4923 4931 | 
             
                /**
         | 
| @@ -9014,7 +9022,7 @@ declare namespace Iot { | |
| 9014 9022 | 
             
              export type Prefix = string;
         | 
| 9015 9023 | 
             
              export interface PresignedUrlConfig {
         | 
| 9016 9024 | 
             
                /**
         | 
| 9017 | 
            -
                 * The ARN of an IAM role that grants  | 
| 9025 | 
            +
                 * The ARN of an IAM role that grants permission to download files from the S3 bucket where the job data/updates are stored. The role must also grant permission for IoT to download the files.  For information about addressing the confused deputy problem, see cross-service confused deputy prevention in the Amazon Web Services IoT Core developer guide. 
         | 
| 9018 9026 | 
             
                 */
         | 
| 9019 9027 | 
             
                roleArn?: RoleArn;
         | 
| 9020 9028 | 
             
                /**
         | 
| @@ -9648,6 +9656,7 @@ declare namespace Iot { | |
| 9648 9656 | 
             
              export type Seconds = number;
         | 
| 9649 9657 | 
             
              export type SecurityGroupId = string;
         | 
| 9650 9658 | 
             
              export type SecurityGroupList = SecurityGroupId[];
         | 
| 9659 | 
            +
              export type SecurityPolicy = string;
         | 
| 9651 9660 | 
             
              export type SecurityProfileArn = string;
         | 
| 9652 9661 | 
             
              export type SecurityProfileDescription = string;
         | 
| 9653 9662 | 
             
              export interface SecurityProfileIdentifier {
         | 
| @@ -10557,6 +10566,12 @@ declare namespace Iot { | |
| 10557 10566 | 
             
              export type TimestreamTimestampUnit = string;
         | 
| 10558 10567 | 
             
              export type TimestreamTimestampValue = string;
         | 
| 10559 10568 | 
             
              export type TinyMaxResults = number;
         | 
| 10569 | 
            +
              export interface TlsConfig {
         | 
| 10570 | 
            +
                /**
         | 
| 10571 | 
            +
                 * The security policy for a domain configuration. For more information, see Security policies  in the Amazon Web Services IoT Core developer guide.
         | 
| 10572 | 
            +
                 */
         | 
| 10573 | 
            +
                securityPolicy?: SecurityPolicy;
         | 
| 10574 | 
            +
              }
         | 
| 10560 10575 | 
             
              export interface TlsContext {
         | 
| 10561 10576 | 
             
                /**
         | 
| 10562 10577 | 
             
                 * The value of the serverName key in a TLS authorization request.
         | 
| @@ -11007,6 +11022,10 @@ declare namespace Iot { | |
| 11007 11022 | 
             
                 * Removes the authorization configuration from a domain.
         | 
| 11008 11023 | 
             
                 */
         | 
| 11009 11024 | 
             
                removeAuthorizerConfig?: RemoveAuthorizerConfig;
         | 
| 11025 | 
            +
                /**
         | 
| 11026 | 
            +
                 * An object that specifies the TLS configuration for a domain.
         | 
| 11027 | 
            +
                 */
         | 
| 11028 | 
            +
                tlsConfig?: TlsConfig;
         | 
| 11010 11029 | 
             
              }
         | 
| 11011 11030 | 
             
              export interface UpdateDomainConfigurationResponse {
         | 
| 11012 11031 | 
             
                /**
         | 
| @@ -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[];
         |