@aws-sdk/client-iot 3.658.1 → 3.664.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.
Files changed (34) hide show
  1. package/dist-cjs/index.js +44 -18
  2. package/dist-cjs/runtimeConfig.js +1 -0
  3. package/dist-es/models/models_0.js +13 -12
  4. package/dist-es/models/models_1.js +12 -0
  5. package/dist-es/protocols/Aws_restJson1.js +11 -2
  6. package/dist-es/runtimeConfig.js +2 -1
  7. package/dist-types/commands/AssociateSbomWithPackageVersionCommand.d.ts +1 -1
  8. package/dist-types/commands/CreateBillingGroupCommand.d.ts +3 -1
  9. package/dist-types/commands/CreateDomainConfigurationCommand.d.ts +5 -0
  10. package/dist-types/commands/CreateRoleAliasCommand.d.ts +8 -0
  11. package/dist-types/commands/CreateThingTypeCommand.d.ts +4 -1
  12. package/dist-types/commands/DeleteBillingGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeDomainConfigurationCommand.d.ts +5 -0
  14. package/dist-types/commands/DisassociateSbomFromPackageVersionCommand.d.ts +1 -1
  15. package/dist-types/commands/ListManagedJobTemplatesCommand.d.ts +2 -1
  16. package/dist-types/commands/ListMetricValuesCommand.d.ts +1 -2
  17. package/dist-types/commands/UpdateDomainConfigurationCommand.d.ts +5 -0
  18. package/dist-types/commands/UpdateRoleAliasCommand.d.ts +8 -0
  19. package/dist-types/models/models_0.d.ts +119 -42
  20. package/dist-types/models/models_1.d.ts +110 -78
  21. package/dist-types/models/models_2.d.ts +153 -4
  22. package/dist-types/runtimeConfig.browser.d.ts +2 -1
  23. package/dist-types/runtimeConfig.d.ts +2 -1
  24. package/dist-types/runtimeConfig.native.d.ts +2 -1
  25. package/dist-types/ts3.4/commands/DeleteBillingGroupCommand.d.ts +1 -1
  26. package/dist-types/ts3.4/commands/ListManagedJobTemplatesCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/ListMetricValuesCommand.d.ts +4 -2
  28. package/dist-types/ts3.4/models/models_0.d.ts +23 -12
  29. package/dist-types/ts3.4/models/models_1.d.ts +18 -20
  30. package/dist-types/ts3.4/models/models_2.d.ts +26 -1
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -3
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +6 -3
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -3
  34. package/package.json +35 -35
@@ -1988,6 +1988,20 @@ export interface Allowed {
1988
1988
  */
1989
1989
  policies?: Policy[];
1990
1990
  }
1991
+ /**
1992
+ * @public
1993
+ * @enum
1994
+ */
1995
+ export declare const ApplicationProtocol: {
1996
+ readonly DEFAULT: "DEFAULT";
1997
+ readonly HTTPS: "HTTPS";
1998
+ readonly MQTT_WSS: "MQTT_WSS";
1999
+ readonly SECURE_MQTT: "SECURE_MQTT";
2000
+ };
2001
+ /**
2002
+ * @public
2003
+ */
2004
+ export type ApplicationProtocol = (typeof ApplicationProtocol)[keyof typeof ApplicationProtocol];
1991
2005
  /**
1992
2006
  * <p>The S3 location.</p>
1993
2007
  * @public
@@ -2010,7 +2024,7 @@ export interface S3Location {
2010
2024
  version?: string;
2011
2025
  }
2012
2026
  /**
2013
- * <p>The Amazon S3 location for the software bill of materials associated with a software
2027
+ * <p>A specific software bill of matrerials associated with a software
2014
2028
  * package version.</p>
2015
2029
  * @public
2016
2030
  */
@@ -2036,7 +2050,7 @@ export interface AssociateSbomWithPackageVersionRequest {
2036
2050
  */
2037
2051
  versionName: string | undefined;
2038
2052
  /**
2039
- * <p>The Amazon S3 location for the software bill of materials associated with a software
2053
+ * <p>A specific software bill of matrerials associated with a software
2040
2054
  * package version.</p>
2041
2055
  * @public
2042
2056
  */
@@ -2075,13 +2089,13 @@ export interface AssociateSbomWithPackageVersionResponse {
2075
2089
  */
2076
2090
  versionName?: string;
2077
2091
  /**
2078
- * <p>The Amazon S3 location for the software bill of materials associated with a software
2092
+ * <p>A specific software bill of matrerials associated with a software
2079
2093
  * package version.</p>
2080
2094
  * @public
2081
2095
  */
2082
2096
  sbom?: Sbom;
2083
2097
  /**
2084
- * <p>The status of the initial validation for the SBOM against the Software Package Data Exchange (SPDX) and CycloneDX industry standard format.</p>
2098
+ * <p>The status of the initial validation for the software bill of materials against the Software Package Data Exchange (SPDX) and CycloneDX industry standard formats.</p>
2085
2099
  * @public
2086
2100
  */
2087
2101
  sbomValidationStatus?: SbomValidationStatus;
@@ -2927,6 +2941,21 @@ export declare const AuthDecision: {
2927
2941
  * @public
2928
2942
  */
2929
2943
  export type AuthDecision = (typeof AuthDecision)[keyof typeof AuthDecision];
2944
+ /**
2945
+ * @public
2946
+ * @enum
2947
+ */
2948
+ export declare const AuthenticationType: {
2949
+ readonly AWS_SIGV4: "AWS_SIGV4";
2950
+ readonly AWS_X509: "AWS_X509";
2951
+ readonly CUSTOM_AUTH: "CUSTOM_AUTH";
2952
+ readonly CUSTOM_AUTH_X509: "CUSTOM_AUTH_X509";
2953
+ readonly DEFAULT: "DEFAULT";
2954
+ };
2955
+ /**
2956
+ * @public
2957
+ */
2958
+ export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
2930
2959
  /**
2931
2960
  * <p>A collection of authorization information.</p>
2932
2961
  * @public
@@ -3813,6 +3842,17 @@ export declare class CertificateValidationException extends __BaseException {
3813
3842
  */
3814
3843
  constructor(opts: __ExceptionOptionType<CertificateValidationException, __BaseException>);
3815
3844
  }
3845
+ /**
3846
+ * <p>An object that specifies the client certificate configuration for a domain.</p>
3847
+ * @public
3848
+ */
3849
+ export interface ClientCertificateConfig {
3850
+ /**
3851
+ * <p>The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection.</p>
3852
+ * @public
3853
+ */
3854
+ clientCertificateCallbackArn?: string;
3855
+ }
3816
3856
  /**
3817
3857
  * <p>The server certificate configuration.</p>
3818
3858
  * @public
@@ -3914,6 +3954,79 @@ export interface CreateDomainConfigurationRequest {
3914
3954
  * @public
3915
3955
  */
3916
3956
  serverCertificateConfig?: ServerCertificateConfig;
3957
+ /**
3958
+ * <p>An enumerated string that specifies the authentication type.</p>
3959
+ * <ul>
3960
+ * <li>
3961
+ * <p>
3962
+ * <code>CUSTOM_AUTH_X509</code> - Use custom authentication and authorization with additional details from the X.509 client certificate.</p>
3963
+ * </li>
3964
+ * </ul>
3965
+ * <ul>
3966
+ * <li>
3967
+ * <p>
3968
+ * <code>CUSTOM_AUTH</code> - Use custom authentication and authorization. For more
3969
+ * information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">Custom authentication and authorization</a>.</p>
3970
+ * </li>
3971
+ * </ul>
3972
+ * <ul>
3973
+ * <li>
3974
+ * <p>
3975
+ * <code>AWS_X509</code> - Use X.509 client certificates without custom authentication and authorization. For more information,
3976
+ * see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html">X.509 client certificates</a>.</p>
3977
+ * </li>
3978
+ * </ul>
3979
+ * <ul>
3980
+ * <li>
3981
+ * <p>
3982
+ * <code>AWS_SIGV4</code> - Use Amazon Web Services Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">IAM users, groups, and roles</a>.</p>
3983
+ * </li>
3984
+ * </ul>
3985
+ * <ul>
3986
+ * <li>
3987
+ * <p>
3988
+ * <code>DEFAULT</code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify authentication type.
3989
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
3990
+ * </li>
3991
+ * </ul>
3992
+ * @public
3993
+ */
3994
+ authenticationType?: AuthenticationType;
3995
+ /**
3996
+ * <p>An enumerated string that specifies the application-layer protocol.</p>
3997
+ * <ul>
3998
+ * <li>
3999
+ * <p>
4000
+ * <code>SECURE_MQTT</code> - MQTT over TLS.</p>
4001
+ * </li>
4002
+ * </ul>
4003
+ * <ul>
4004
+ * <li>
4005
+ * <p>
4006
+ * <code>MQTT_WSS</code> - MQTT over WebSocket.</p>
4007
+ * </li>
4008
+ * </ul>
4009
+ * <ul>
4010
+ * <li>
4011
+ * <p>
4012
+ * <code>HTTPS</code> - HTTP over TLS.</p>
4013
+ * </li>
4014
+ * </ul>
4015
+ * <ul>
4016
+ * <li>
4017
+ * <p>
4018
+ * <code>DEFAULT</code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify application_layer protocol.
4019
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
4020
+ * </li>
4021
+ * </ul>
4022
+ * @public
4023
+ */
4024
+ applicationProtocol?: ApplicationProtocol;
4025
+ /**
4026
+ * <p>An object that specifies the client certificate configuration for a domain.</p>
4027
+ * @public
4028
+ */
4029
+ clientCertificateConfig?: ClientCertificateConfig;
3917
4030
  }
3918
4031
  /**
3919
4032
  * @public
@@ -5426,8 +5539,7 @@ export interface CreatePackageResponse {
5426
5539
  description?: string;
5427
5540
  }
5428
5541
  /**
5429
- * <p>The Amazon S3 location for the artifacts associated with a software package
5430
- * version.</p>
5542
+ * <p>A specific package version artifact associated with a software package version.</p>
5431
5543
  * @public
5432
5544
  */
5433
5545
  export interface PackageVersionArtifact {
@@ -5470,7 +5582,7 @@ export interface CreatePackageVersionRequest {
5470
5582
  artifact?: PackageVersionArtifact;
5471
5583
  /**
5472
5584
  * <p>The inline job document associated with a software package version used for a quick job
5473
- * deployment via IoT Jobs.</p>
5585
+ * deployment.</p>
5474
5586
  * @public
5475
5587
  */
5476
5588
  recipe?: string;
@@ -6649,41 +6761,6 @@ export declare class DeleteConflictException extends __BaseException {
6649
6761
  */
6650
6762
  constructor(opts: __ExceptionOptionType<DeleteConflictException, __BaseException>);
6651
6763
  }
6652
- /**
6653
- * @public
6654
- */
6655
- export interface DeleteBillingGroupRequest {
6656
- /**
6657
- * <p>The name of the billing group.</p>
6658
- * @public
6659
- */
6660
- billingGroupName: string | undefined;
6661
- /**
6662
- * <p>The expected version of the billing group. If the version of the billing group does
6663
- * not match the expected version specified in the request, the
6664
- * <code>DeleteBillingGroup</code> request is rejected with a
6665
- * <code>VersionConflictException</code>.</p>
6666
- * @public
6667
- */
6668
- expectedVersion?: number;
6669
- }
6670
- /**
6671
- * @public
6672
- */
6673
- export interface DeleteBillingGroupResponse {
6674
- }
6675
- /**
6676
- * <p>The certificate operation is not allowed.</p>
6677
- * @public
6678
- */
6679
- export declare class CertificateStateException extends __BaseException {
6680
- readonly name: "CertificateStateException";
6681
- readonly $fault: "client";
6682
- /**
6683
- * @internal
6684
- */
6685
- constructor(opts: __ExceptionOptionType<CertificateStateException, __BaseException>);
6686
- }
6687
6764
  /**
6688
6765
  * @internal
6689
6766
  */
@@ -1,6 +1,41 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTServiceException as __BaseException } from "./IoTServiceException";
3
- import { AbortConfig, Action, ActiveViolation, AggregationType, AlertTarget, AlertTargetType, AuditCheckConfiguration, AuditCheckDetails, AuditFinding, AuditFrequency, AuditMitigationActionExecutionMetadata, AuditMitigationActionsExecutionStatus, AuditMitigationActionsTaskMetadata, AuditMitigationActionsTaskStatus, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditNotificationType, AuditSuppression, AuditTaskMetadata, AuditTaskStatus, AuditTaskType, AuthorizerConfig, AuthorizerDescription, AuthorizerStatus, AuthorizerSummary, AutoRegistrationStatus, AwsJobExecutionsRolloutConfig, AwsJobPresignedUrlConfig, Behavior, BillingGroupProperties, CertificateProviderOperation, CustomMetricType, DayOfWeek, DimensionType, DimensionValueOperator, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MaintenanceWindow, MetricsExportConfig, MetricToRetain, MetricValue, MitigationActionParams, OTAUpdateFile, OTAUpdateStatus, PackageVersionArtifact, PackageVersionStatus, Policy, PresignedUrlConfig, Protocol, ProvisioningHook, ResourceIdentifier, Sbom, SbomValidationStatus, SchedulingConfig, ServerCertificateConfig, ServiceType, StreamFile, TargetSelection, TaskStatisticsForAuditCheck, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestination, VerificationState } from "./models_0";
3
+ import { AbortConfig, Action, ActiveViolation, AggregationType, AlertTarget, AlertTargetType, ApplicationProtocol, AuditCheckConfiguration, AuditCheckDetails, AuditFinding, AuditFrequency, AuditMitigationActionExecutionMetadata, AuditMitigationActionsExecutionStatus, AuditMitigationActionsTaskMetadata, AuditMitigationActionsTaskStatus, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditNotificationType, AuditSuppression, AuditTaskMetadata, AuditTaskStatus, AuditTaskType, AuthenticationType, AuthorizerConfig, AuthorizerDescription, AuthorizerStatus, AuthorizerSummary, AutoRegistrationStatus, AwsJobExecutionsRolloutConfig, AwsJobPresignedUrlConfig, Behavior, BillingGroupProperties, CertificateProviderOperation, ClientCertificateConfig, CustomMetricType, DayOfWeek, DimensionType, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MaintenanceWindow, MetricsExportConfig, MetricToRetain, MitigationActionParams, OTAUpdateFile, OTAUpdateStatus, PackageVersionArtifact, PackageVersionStatus, Policy, PresignedUrlConfig, Protocol, ProvisioningHook, ResourceIdentifier, Sbom, SbomValidationStatus, SchedulingConfig, ServerCertificateConfig, ServiceType, StreamFile, TargetSelection, TaskStatisticsForAuditCheck, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestination, VerificationState } from "./models_0";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface DeleteBillingGroupRequest {
8
+ /**
9
+ * <p>The name of the billing group.</p>
10
+ * @public
11
+ */
12
+ billingGroupName: string | undefined;
13
+ /**
14
+ * <p>The expected version of the billing group. If the version of the billing group does
15
+ * not match the expected version specified in the request, the
16
+ * <code>DeleteBillingGroup</code> request is rejected with a
17
+ * <code>VersionConflictException</code>.</p>
18
+ * @public
19
+ */
20
+ expectedVersion?: number;
21
+ }
22
+ /**
23
+ * @public
24
+ */
25
+ export interface DeleteBillingGroupResponse {
26
+ }
27
+ /**
28
+ * <p>The certificate operation is not allowed.</p>
29
+ * @public
30
+ */
31
+ export declare class CertificateStateException extends __BaseException {
32
+ readonly name: "CertificateStateException";
33
+ readonly $fault: "client";
34
+ /**
35
+ * @internal
36
+ */
37
+ constructor(opts: __ExceptionOptionType<CertificateStateException, __BaseException>);
38
+ }
4
39
  /**
5
40
  * <p>Input for the DeleteCACertificate operation.</p>
6
41
  * @public
@@ -1761,6 +1796,79 @@ export interface DescribeDomainConfigurationResponse {
1761
1796
  * @public
1762
1797
  */
1763
1798
  serverCertificateConfig?: ServerCertificateConfig;
1799
+ /**
1800
+ * <p>An enumerated string that specifies the authentication type.</p>
1801
+ * <ul>
1802
+ * <li>
1803
+ * <p>
1804
+ * <code>CUSTOM_AUTH_X509</code> - Use custom authentication and authorization with additional details from the X.509 client certificate.</p>
1805
+ * </li>
1806
+ * </ul>
1807
+ * <ul>
1808
+ * <li>
1809
+ * <p>
1810
+ * <code>CUSTOM_AUTH</code> - Use custom authentication and authorization. For more
1811
+ * information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">Custom authentication and authorization</a>.</p>
1812
+ * </li>
1813
+ * </ul>
1814
+ * <ul>
1815
+ * <li>
1816
+ * <p>
1817
+ * <code>AWS_X509</code> - Use X.509 client certificates without custom authentication and authorization. For more information,
1818
+ * see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html">X.509 client certificates</a>.</p>
1819
+ * </li>
1820
+ * </ul>
1821
+ * <ul>
1822
+ * <li>
1823
+ * <p>
1824
+ * <code>AWS_SIGV4</code> - Use Amazon Web Services Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">IAM users, groups, and roles</a>.</p>
1825
+ * </li>
1826
+ * </ul>
1827
+ * <ul>
1828
+ * <li>
1829
+ * <p>
1830
+ * <code>DEFAULT</code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify authentication type.
1831
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
1832
+ * </li>
1833
+ * </ul>
1834
+ * @public
1835
+ */
1836
+ authenticationType?: AuthenticationType;
1837
+ /**
1838
+ * <p>An enumerated string that specifies the application-layer protocol.</p>
1839
+ * <ul>
1840
+ * <li>
1841
+ * <p>
1842
+ * <code>SECURE_MQTT</code> - MQTT over TLS.</p>
1843
+ * </li>
1844
+ * </ul>
1845
+ * <ul>
1846
+ * <li>
1847
+ * <p>
1848
+ * <code>MQTT_WSS</code> - MQTT over WebSocket.</p>
1849
+ * </li>
1850
+ * </ul>
1851
+ * <ul>
1852
+ * <li>
1853
+ * <p>
1854
+ * <code>HTTPS</code> - HTTP over TLS.</p>
1855
+ * </li>
1856
+ * </ul>
1857
+ * <ul>
1858
+ * <li>
1859
+ * <p>
1860
+ * <code>DEFAULT</code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify application_layer protocol.
1861
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
1862
+ * </li>
1863
+ * </ul>
1864
+ * @public
1865
+ */
1866
+ applicationProtocol?: ApplicationProtocol;
1867
+ /**
1868
+ * <p>An object that specifies the client certificate configuration for a domain.</p>
1869
+ * @public
1870
+ */
1871
+ clientCertificateConfig?: ClientCertificateConfig;
1764
1872
  }
1765
1873
  /**
1766
1874
  * <p>The input for the DescribeEndpoint operation.</p>
@@ -4473,7 +4581,7 @@ export interface GetPackageVersionResponse {
4473
4581
  sbomValidationStatus?: SbomValidationStatus;
4474
4582
  /**
4475
4583
  * <p>The inline job document associated with a software package version used for a quick job
4476
- * deployment via IoT Jobs.</p>
4584
+ * deployment.</p>
4477
4585
  * @public
4478
4586
  */
4479
4587
  recipe?: string;
@@ -6439,82 +6547,6 @@ export interface ManagedJobTemplateSummary {
6439
6547
  */
6440
6548
  templateVersion?: string;
6441
6549
  }
6442
- /**
6443
- * @public
6444
- */
6445
- export interface ListManagedJobTemplatesResponse {
6446
- /**
6447
- * <p>A list of managed job templates that are returned.</p>
6448
- * @public
6449
- */
6450
- managedJobTemplates?: ManagedJobTemplateSummary[];
6451
- /**
6452
- * <p>The token to retrieve the next set of results.</p>
6453
- * @public
6454
- */
6455
- nextToken?: string;
6456
- }
6457
- /**
6458
- * @public
6459
- */
6460
- export interface ListMetricValuesRequest {
6461
- /**
6462
- * <p>The name of the thing for which security profile metric values are returned.</p>
6463
- * @public
6464
- */
6465
- thingName: string | undefined;
6466
- /**
6467
- * <p>The name of the security profile metric for which values are returned.</p>
6468
- * @public
6469
- */
6470
- metricName: string | undefined;
6471
- /**
6472
- * <p>The dimension name.</p>
6473
- * @public
6474
- */
6475
- dimensionName?: string;
6476
- /**
6477
- * <p>The dimension value operator.</p>
6478
- * @public
6479
- */
6480
- dimensionValueOperator?: DimensionValueOperator;
6481
- /**
6482
- * <p>The start of the time period for which metric values are returned.</p>
6483
- * @public
6484
- */
6485
- startTime: Date | undefined;
6486
- /**
6487
- * <p>The end of the time period for which metric values are returned.</p>
6488
- * @public
6489
- */
6490
- endTime: Date | undefined;
6491
- /**
6492
- * <p>The maximum number of results to return at one time.</p>
6493
- * @public
6494
- */
6495
- maxResults?: number;
6496
- /**
6497
- * <p>The token for the next set of results.</p>
6498
- * @public
6499
- */
6500
- nextToken?: string;
6501
- }
6502
- /**
6503
- * <p>A metric.</p>
6504
- * @public
6505
- */
6506
- export interface MetricDatum {
6507
- /**
6508
- * <p>The time the metric value was reported.</p>
6509
- * @public
6510
- */
6511
- timestamp?: Date;
6512
- /**
6513
- * <p>The value reported for the metric.</p>
6514
- * @public
6515
- */
6516
- value?: MetricValue;
6517
- }
6518
6550
  /**
6519
6551
  * @internal
6520
6552
  */
@@ -1,7 +1,83 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTServiceException as __BaseException } from "./IoTServiceException";
3
- import { AbortConfig, AggregationType, AlertTarget, AlertTargetType, AttributePayload, AuditCheckConfiguration, AuditFrequency, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditNotificationType, AuthInfo, AuthorizerConfig, AuthorizerStatus, AuthResult, AutoRegistrationStatus, Behavior, BillingGroupProperties, CertificateProviderOperation, CustomMetricType, DayOfWeek, DimensionType, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MetricsExportConfig, MetricToRetain, MetricValue, MitigationActionParams, OTAUpdateStatus, PackageVersionArtifact, PackageVersionStatus, Policy, PresignedUrlConfig, ProvisioningHook, RelatedResource, ResourceIdentifier, ServerCertificateConfig, StreamFile, Tag, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestinationStatus, TopicRulePayload, VerificationState, ViolationEventAdditionalInfo } from "./models_0";
4
- import { BehaviorCriteriaType, CACertificateStatus, CertificateMode, CertificateStatus, Configuration, DetectMitigationActionsTaskTarget, DomainConfigurationStatus, EventType, GroupNameAndArn, LogTargetType, MetricDatum, MitigationActionType, RegistrationConfig, Status, ThingGroupIndexingConfiguration, ThingIndexingConfiguration, ThingTypeMetadata, VersionUpdateByJobsConfig, ViolationEventOccurrenceRange } from "./models_1";
3
+ import { AbortConfig, AggregationType, AlertTarget, AlertTargetType, ApplicationProtocol, AttributePayload, AuditCheckConfiguration, AuditFrequency, AuditMitigationActionsTaskTarget, AuditNotificationTarget, AuditNotificationType, AuthenticationType, AuthInfo, AuthorizerConfig, AuthorizerStatus, AuthResult, AutoRegistrationStatus, Behavior, BillingGroupProperties, CertificateProviderOperation, ClientCertificateConfig, CustomMetricType, DayOfWeek, DimensionType, DimensionValueOperator, FleetMetricUnit, JobExecutionsRetryConfig, JobExecutionsRolloutConfig, LogLevel, MetricsExportConfig, MetricToRetain, MetricValue, MitigationActionParams, OTAUpdateStatus, PackageVersionArtifact, PackageVersionStatus, Policy, PresignedUrlConfig, ProvisioningHook, RelatedResource, ResourceIdentifier, ServerCertificateConfig, StreamFile, Tag, TemplateType, ThingGroupProperties, ThingTypeProperties, TimeoutConfig, TlsConfig, TopicRuleDestinationStatus, TopicRulePayload, VerificationState, ViolationEventAdditionalInfo } from "./models_0";
4
+ import { BehaviorCriteriaType, CACertificateStatus, CertificateMode, CertificateStatus, Configuration, DetectMitigationActionsTaskTarget, DomainConfigurationStatus, EventType, GroupNameAndArn, LogTargetType, ManagedJobTemplateSummary, MitigationActionType, RegistrationConfig, Status, ThingGroupIndexingConfiguration, ThingIndexingConfiguration, ThingTypeMetadata, VersionUpdateByJobsConfig, ViolationEventOccurrenceRange } from "./models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export interface ListManagedJobTemplatesResponse {
9
+ /**
10
+ * <p>A list of managed job templates that are returned.</p>
11
+ * @public
12
+ */
13
+ managedJobTemplates?: ManagedJobTemplateSummary[];
14
+ /**
15
+ * <p>The token to retrieve the next set of results.</p>
16
+ * @public
17
+ */
18
+ nextToken?: string;
19
+ }
20
+ /**
21
+ * @public
22
+ */
23
+ export interface ListMetricValuesRequest {
24
+ /**
25
+ * <p>The name of the thing for which security profile metric values are returned.</p>
26
+ * @public
27
+ */
28
+ thingName: string | undefined;
29
+ /**
30
+ * <p>The name of the security profile metric for which values are returned.</p>
31
+ * @public
32
+ */
33
+ metricName: string | undefined;
34
+ /**
35
+ * <p>The dimension name.</p>
36
+ * @public
37
+ */
38
+ dimensionName?: string;
39
+ /**
40
+ * <p>The dimension value operator.</p>
41
+ * @public
42
+ */
43
+ dimensionValueOperator?: DimensionValueOperator;
44
+ /**
45
+ * <p>The start of the time period for which metric values are returned.</p>
46
+ * @public
47
+ */
48
+ startTime: Date | undefined;
49
+ /**
50
+ * <p>The end of the time period for which metric values are returned.</p>
51
+ * @public
52
+ */
53
+ endTime: Date | undefined;
54
+ /**
55
+ * <p>The maximum number of results to return at one time.</p>
56
+ * @public
57
+ */
58
+ maxResults?: number;
59
+ /**
60
+ * <p>The token for the next set of results.</p>
61
+ * @public
62
+ */
63
+ nextToken?: string;
64
+ }
65
+ /**
66
+ * <p>A metric.</p>
67
+ * @public
68
+ */
69
+ export interface MetricDatum {
70
+ /**
71
+ * <p>The time the metric value was reported.</p>
72
+ * @public
73
+ */
74
+ timestamp?: Date;
75
+ /**
76
+ * <p>The value reported for the metric.</p>
77
+ * @public
78
+ */
79
+ value?: MetricValue;
80
+ }
5
81
  /**
6
82
  * @public
7
83
  */
@@ -2538,7 +2614,7 @@ export interface ThingDocument {
2538
2614
  */
2539
2615
  thingTypeName?: string;
2540
2616
  /**
2541
- * <p>Thing group names.</p>
2617
+ * <p>Thing group and billing group names.</p>
2542
2618
  * @public
2543
2619
  */
2544
2620
  thingGroupNames?: string[];
@@ -3568,6 +3644,79 @@ export interface UpdateDomainConfigurationRequest {
3568
3644
  * @public
3569
3645
  */
3570
3646
  serverCertificateConfig?: ServerCertificateConfig;
3647
+ /**
3648
+ * <p>An enumerated string that specifies the authentication type.</p>
3649
+ * <ul>
3650
+ * <li>
3651
+ * <p>
3652
+ * <code>CUSTOM_AUTH_X509</code> - Use custom authentication and authorization with additional details from the X.509 client certificate.</p>
3653
+ * </li>
3654
+ * </ul>
3655
+ * <ul>
3656
+ * <li>
3657
+ * <p>
3658
+ * <code>CUSTOM_AUTH</code> - Use custom authentication and authorization. For more
3659
+ * information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">Custom authentication and authorization</a>.</p>
3660
+ * </li>
3661
+ * </ul>
3662
+ * <ul>
3663
+ * <li>
3664
+ * <p>
3665
+ * <code>AWS_X509</code> - Use X.509 client certificates without custom authentication and authorization. For more information,
3666
+ * see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html">X.509 client certificates</a>.</p>
3667
+ * </li>
3668
+ * </ul>
3669
+ * <ul>
3670
+ * <li>
3671
+ * <p>
3672
+ * <code>AWS_SIGV4</code> - Use Amazon Web Services Signature Version 4. For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html">IAM users, groups, and roles</a>.</p>
3673
+ * </li>
3674
+ * </ul>
3675
+ * <ul>
3676
+ * <li>
3677
+ * <p>
3678
+ * <code>DEFAULT </code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify authentication type.
3679
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
3680
+ * </li>
3681
+ * </ul>
3682
+ * @public
3683
+ */
3684
+ authenticationType?: AuthenticationType;
3685
+ /**
3686
+ * <p>An enumerated string that specifies the application-layer protocol.</p>
3687
+ * <ul>
3688
+ * <li>
3689
+ * <p>
3690
+ * <code>SECURE_MQTT</code> - MQTT over TLS.</p>
3691
+ * </li>
3692
+ * </ul>
3693
+ * <ul>
3694
+ * <li>
3695
+ * <p>
3696
+ * <code>MQTT_WSS</code> - MQTT over WebSocket.</p>
3697
+ * </li>
3698
+ * </ul>
3699
+ * <ul>
3700
+ * <li>
3701
+ * <p>
3702
+ * <code>HTTPS</code> - HTTP over TLS.</p>
3703
+ * </li>
3704
+ * </ul>
3705
+ * <ul>
3706
+ * <li>
3707
+ * <p>
3708
+ * <code>DEFAULT</code> - Use a combination of port and Application Layer Protocol Negotiation (ALPN) to specify application_layer protocol.
3709
+ * For more information, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html">Device communication protocols</a>.</p>
3710
+ * </li>
3711
+ * </ul>
3712
+ * @public
3713
+ */
3714
+ applicationProtocol?: ApplicationProtocol;
3715
+ /**
3716
+ * <p>An object that specifies the client certificate configuration for a domain.</p>
3717
+ * @public
3718
+ */
3719
+ clientCertificateConfig?: ClientCertificateConfig;
3571
3720
  }
3572
3721
  /**
3573
3722
  * @public
@@ -3938,7 +4087,7 @@ export interface UpdatePackageVersionRequest {
3938
4087
  action?: PackageVersionAction;
3939
4088
  /**
3940
4089
  * <p>The inline job document associated with a software package version used for a quick job
3941
- * deployment via IoT Jobs.</p>
4090
+ * deployment.</p>
3942
4091
  * @public
3943
4092
  */
3944
4093
  recipe?: string;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
29
29
  logger: import("@smithy/types").Logger;
30
30
  extensions: import("./runtimeExtensions").RuntimeExtension[];
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
+ userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
32
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
33
34
  endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
34
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
- defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
14
14
  requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
@@ -17,6 +17,7 @@ export declare const getRuntimeConfig: (config: IoTClientConfig) => {
17
17
  streamCollector: import("@smithy/types").StreamCollector;
18
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
20
21
  apiVersion: string;
21
22
  cacheMiddleware?: boolean | undefined;
22
23
  urlParser: import("@smithy/types").UrlParser;