aws-sdk-iot 1.135.0 → 1.137.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +193 -11
- data/lib/aws-sdk-iot/client_api.rb +16 -0
- data/lib/aws-sdk-iot/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-iot/endpoints.rb +2 -2836
- data/lib/aws-sdk-iot/plugins/endpoints.rb +1 -522
- data/lib/aws-sdk-iot/types.rb +272 -18
- data/lib/aws-sdk-iot.rb +1 -1
- data/sig/client.rbs +13 -0
- data/sig/types.rbs +14 -0
- metadata +4 -4
data/lib/aws-sdk-iot/types.rb
CHANGED
@@ -496,8 +496,8 @@ module Aws::IoT
|
|
496
496
|
# @return [String]
|
497
497
|
#
|
498
498
|
# @!attribute [rw] sbom
|
499
|
-
#
|
500
|
-
#
|
499
|
+
# A specific software bill of matrerials associated with a software
|
500
|
+
# package version.
|
501
501
|
# @return [Types::Sbom]
|
502
502
|
#
|
503
503
|
# @!attribute [rw] client_token
|
@@ -527,14 +527,14 @@ module Aws::IoT
|
|
527
527
|
# @return [String]
|
528
528
|
#
|
529
529
|
# @!attribute [rw] sbom
|
530
|
-
#
|
531
|
-
#
|
530
|
+
# A specific software bill of matrerials associated with a software
|
531
|
+
# package version.
|
532
532
|
# @return [Types::Sbom]
|
533
533
|
#
|
534
534
|
# @!attribute [rw] sbom_validation_status
|
535
|
-
# The status of the initial validation for the
|
536
|
-
# Software Package Data Exchange (SPDX) and
|
537
|
-
# standard
|
535
|
+
# The status of the initial validation for the software bill of
|
536
|
+
# materials against the Software Package Data Exchange (SPDX) and
|
537
|
+
# CycloneDX industry standard formats.
|
538
538
|
# @return [String]
|
539
539
|
#
|
540
540
|
class AssociateSbomWithPackageVersionResponse < Struct.new(
|
@@ -2025,6 +2025,20 @@ module Aws::IoT
|
|
2025
2025
|
|
2026
2026
|
class ClearDefaultAuthorizerResponse < Aws::EmptyStructure; end
|
2027
2027
|
|
2028
|
+
# An object that specifies the client certificate configuration for a
|
2029
|
+
# domain.
|
2030
|
+
#
|
2031
|
+
# @!attribute [rw] client_certificate_callback_arn
|
2032
|
+
# The ARN of the Lambda function that IoT invokes after mutual TLS
|
2033
|
+
# authentication during the connection.
|
2034
|
+
# @return [String]
|
2035
|
+
#
|
2036
|
+
class ClientCertificateConfig < Struct.new(
|
2037
|
+
:client_certificate_callback_arn)
|
2038
|
+
SENSITIVE = []
|
2039
|
+
include Aws::Structure
|
2040
|
+
end
|
2041
|
+
|
2028
2042
|
# Describes an action that updates a CloudWatch alarm.
|
2029
2043
|
#
|
2030
2044
|
# @!attribute [rw] role_arn
|
@@ -2667,6 +2681,83 @@ module Aws::IoT
|
|
2667
2681
|
# The server certificate configuration.
|
2668
2682
|
# @return [Types::ServerCertificateConfig]
|
2669
2683
|
#
|
2684
|
+
# @!attribute [rw] authentication_type
|
2685
|
+
# An enumerated string that specifies the authentication type.
|
2686
|
+
#
|
2687
|
+
# * `CUSTOM_AUTH_X509` - Use custom authentication and authorization
|
2688
|
+
# with additional details from the X.509 client certificate.
|
2689
|
+
#
|
2690
|
+
# ^
|
2691
|
+
# ^
|
2692
|
+
#
|
2693
|
+
# * `CUSTOM_AUTH` - Use custom authentication and authorization. For
|
2694
|
+
# more information, see [Custom authentication and
|
2695
|
+
# authorization][1].
|
2696
|
+
#
|
2697
|
+
# ^
|
2698
|
+
# ^
|
2699
|
+
#
|
2700
|
+
# * `AWS_X509` - Use X.509 client certificates without custom
|
2701
|
+
# authentication and authorization. For more information, see [X.509
|
2702
|
+
# client certificates][2].
|
2703
|
+
#
|
2704
|
+
# ^
|
2705
|
+
# ^
|
2706
|
+
#
|
2707
|
+
# * `AWS_SIGV4` - Use Amazon Web Services Signature Version 4. For
|
2708
|
+
# more information, see [IAM users, groups, and roles][1].
|
2709
|
+
#
|
2710
|
+
# ^
|
2711
|
+
# ^
|
2712
|
+
#
|
2713
|
+
# * `DEFAULT` - Use a combination of port and Application Layer
|
2714
|
+
# Protocol Negotiation (ALPN) to specify authentication type. For
|
2715
|
+
# more information, see [Device communication protocols][3].
|
2716
|
+
#
|
2717
|
+
# ^
|
2718
|
+
#
|
2719
|
+
#
|
2720
|
+
#
|
2721
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html
|
2722
|
+
# [2]: https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html
|
2723
|
+
# [3]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
2724
|
+
# @return [String]
|
2725
|
+
#
|
2726
|
+
# @!attribute [rw] application_protocol
|
2727
|
+
# An enumerated string that specifies the application-layer protocol.
|
2728
|
+
#
|
2729
|
+
# * `SECURE_MQTT` - MQTT over TLS.
|
2730
|
+
#
|
2731
|
+
# ^
|
2732
|
+
# ^
|
2733
|
+
#
|
2734
|
+
# * `MQTT_WSS` - MQTT over WebSocket.
|
2735
|
+
#
|
2736
|
+
# ^
|
2737
|
+
# ^
|
2738
|
+
#
|
2739
|
+
# * `HTTPS` - HTTP over TLS.
|
2740
|
+
#
|
2741
|
+
# ^
|
2742
|
+
# ^
|
2743
|
+
#
|
2744
|
+
# * `DEFAULT` - Use a combination of port and Application Layer
|
2745
|
+
# Protocol Negotiation (ALPN) to specify application\_layer
|
2746
|
+
# protocol. For more information, see [Device communication
|
2747
|
+
# protocols][1].
|
2748
|
+
#
|
2749
|
+
# ^
|
2750
|
+
#
|
2751
|
+
#
|
2752
|
+
#
|
2753
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
2754
|
+
# @return [String]
|
2755
|
+
#
|
2756
|
+
# @!attribute [rw] client_certificate_config
|
2757
|
+
# An object that specifies the client certificate configuration for a
|
2758
|
+
# domain.
|
2759
|
+
# @return [Types::ClientCertificateConfig]
|
2760
|
+
#
|
2670
2761
|
class CreateDomainConfigurationRequest < Struct.new(
|
2671
2762
|
:domain_configuration_name,
|
2672
2763
|
:domain_name,
|
@@ -2676,7 +2767,10 @@ module Aws::IoT
|
|
2676
2767
|
:service_type,
|
2677
2768
|
:tags,
|
2678
2769
|
:tls_config,
|
2679
|
-
:server_certificate_config
|
2770
|
+
:server_certificate_config,
|
2771
|
+
:authentication_type,
|
2772
|
+
:application_protocol,
|
2773
|
+
:client_certificate_config)
|
2680
2774
|
SENSITIVE = []
|
2681
2775
|
include Aws::Structure
|
2682
2776
|
end
|
@@ -3433,7 +3527,7 @@ module Aws::IoT
|
|
3433
3527
|
#
|
3434
3528
|
# @!attribute [rw] recipe
|
3435
3529
|
# The inline job document associated with a software package version
|
3436
|
-
# used for a quick job deployment
|
3530
|
+
# used for a quick job deployment.
|
3437
3531
|
# @return [String]
|
3438
3532
|
#
|
3439
3533
|
# @!attribute [rw] tags
|
@@ -5509,6 +5603,83 @@ module Aws::IoT
|
|
5509
5603
|
# The server certificate configuration.
|
5510
5604
|
# @return [Types::ServerCertificateConfig]
|
5511
5605
|
#
|
5606
|
+
# @!attribute [rw] authentication_type
|
5607
|
+
# An enumerated string that specifies the authentication type.
|
5608
|
+
#
|
5609
|
+
# * `CUSTOM_AUTH_X509` - Use custom authentication and authorization
|
5610
|
+
# with additional details from the X.509 client certificate.
|
5611
|
+
#
|
5612
|
+
# ^
|
5613
|
+
# ^
|
5614
|
+
#
|
5615
|
+
# * `CUSTOM_AUTH` - Use custom authentication and authorization. For
|
5616
|
+
# more information, see [Custom authentication and
|
5617
|
+
# authorization][1].
|
5618
|
+
#
|
5619
|
+
# ^
|
5620
|
+
# ^
|
5621
|
+
#
|
5622
|
+
# * `AWS_X509` - Use X.509 client certificates without custom
|
5623
|
+
# authentication and authorization. For more information, see [X.509
|
5624
|
+
# client certificates][2].
|
5625
|
+
#
|
5626
|
+
# ^
|
5627
|
+
# ^
|
5628
|
+
#
|
5629
|
+
# * `AWS_SIGV4` - Use Amazon Web Services Signature Version 4. For
|
5630
|
+
# more information, see [IAM users, groups, and roles][1].
|
5631
|
+
#
|
5632
|
+
# ^
|
5633
|
+
# ^
|
5634
|
+
#
|
5635
|
+
# * `DEFAULT` - Use a combination of port and Application Layer
|
5636
|
+
# Protocol Negotiation (ALPN) to specify authentication type. For
|
5637
|
+
# more information, see [Device communication protocols][3].
|
5638
|
+
#
|
5639
|
+
# ^
|
5640
|
+
#
|
5641
|
+
#
|
5642
|
+
#
|
5643
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html
|
5644
|
+
# [2]: https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html
|
5645
|
+
# [3]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
5646
|
+
# @return [String]
|
5647
|
+
#
|
5648
|
+
# @!attribute [rw] application_protocol
|
5649
|
+
# An enumerated string that specifies the application-layer protocol.
|
5650
|
+
#
|
5651
|
+
# * `SECURE_MQTT` - MQTT over TLS.
|
5652
|
+
#
|
5653
|
+
# ^
|
5654
|
+
# ^
|
5655
|
+
#
|
5656
|
+
# * `MQTT_WSS` - MQTT over WebSocket.
|
5657
|
+
#
|
5658
|
+
# ^
|
5659
|
+
# ^
|
5660
|
+
#
|
5661
|
+
# * `HTTPS` - HTTP over TLS.
|
5662
|
+
#
|
5663
|
+
# ^
|
5664
|
+
# ^
|
5665
|
+
#
|
5666
|
+
# * `DEFAULT` - Use a combination of port and Application Layer
|
5667
|
+
# Protocol Negotiation (ALPN) to specify application\_layer
|
5668
|
+
# protocol. For more information, see [Device communication
|
5669
|
+
# protocols][1].
|
5670
|
+
#
|
5671
|
+
# ^
|
5672
|
+
#
|
5673
|
+
#
|
5674
|
+
#
|
5675
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
5676
|
+
# @return [String]
|
5677
|
+
#
|
5678
|
+
# @!attribute [rw] client_certificate_config
|
5679
|
+
# An object that specifies the client certificate configuration for a
|
5680
|
+
# domain.
|
5681
|
+
# @return [Types::ClientCertificateConfig]
|
5682
|
+
#
|
5512
5683
|
class DescribeDomainConfigurationResponse < Struct.new(
|
5513
5684
|
:domain_configuration_name,
|
5514
5685
|
:domain_configuration_arn,
|
@@ -5520,7 +5691,10 @@ module Aws::IoT
|
|
5520
5691
|
:domain_type,
|
5521
5692
|
:last_status_change_date,
|
5522
5693
|
:tls_config,
|
5523
|
-
:server_certificate_config
|
5694
|
+
:server_certificate_config,
|
5695
|
+
:authentication_type,
|
5696
|
+
:application_protocol,
|
5697
|
+
:client_certificate_config)
|
5524
5698
|
SENSITIVE = []
|
5525
5699
|
include Aws::Structure
|
5526
5700
|
end
|
@@ -7688,7 +7862,7 @@ module Aws::IoT
|
|
7688
7862
|
#
|
7689
7863
|
# @!attribute [rw] recipe
|
7690
7864
|
# The inline job document associated with a software package version
|
7691
|
-
# used for a quick job deployment
|
7865
|
+
# used for a quick job deployment.
|
7692
7866
|
# @return [String]
|
7693
7867
|
#
|
7694
7868
|
class GetPackageVersionResponse < Struct.new(
|
@@ -12623,8 +12797,8 @@ module Aws::IoT
|
|
12623
12797
|
include Aws::Structure
|
12624
12798
|
end
|
12625
12799
|
|
12626
|
-
#
|
12627
|
-
#
|
12800
|
+
# A specific package version artifact associated with a software package
|
12801
|
+
# version.
|
12628
12802
|
#
|
12629
12803
|
# @!attribute [rw] s3_location
|
12630
12804
|
# The S3 location.
|
@@ -13643,8 +13817,8 @@ module Aws::IoT
|
|
13643
13817
|
include Aws::Structure
|
13644
13818
|
end
|
13645
13819
|
|
13646
|
-
#
|
13647
|
-
#
|
13820
|
+
# A specific software bill of matrerials associated with a software
|
13821
|
+
# package version.
|
13648
13822
|
#
|
13649
13823
|
# @!attribute [rw] s3_location
|
13650
13824
|
# The S3 location.
|
@@ -14928,7 +15102,7 @@ module Aws::IoT
|
|
14928
15102
|
# @return [String]
|
14929
15103
|
#
|
14930
15104
|
# @!attribute [rw] thing_group_names
|
14931
|
-
# Thing group names.
|
15105
|
+
# Thing group and billing group names.
|
14932
15106
|
# @return [Array<String>]
|
14933
15107
|
#
|
14934
15108
|
# @!attribute [rw] attributes
|
@@ -16266,13 +16440,93 @@ module Aws::IoT
|
|
16266
16440
|
# The server certificate configuration.
|
16267
16441
|
# @return [Types::ServerCertificateConfig]
|
16268
16442
|
#
|
16443
|
+
# @!attribute [rw] authentication_type
|
16444
|
+
# An enumerated string that specifies the authentication type.
|
16445
|
+
#
|
16446
|
+
# * `CUSTOM_AUTH_X509` - Use custom authentication and authorization
|
16447
|
+
# with additional details from the X.509 client certificate.
|
16448
|
+
#
|
16449
|
+
# ^
|
16450
|
+
# ^
|
16451
|
+
#
|
16452
|
+
# * `CUSTOM_AUTH` - Use custom authentication and authorization. For
|
16453
|
+
# more information, see [Custom authentication and
|
16454
|
+
# authorization][1].
|
16455
|
+
#
|
16456
|
+
# ^
|
16457
|
+
# ^
|
16458
|
+
#
|
16459
|
+
# * `AWS_X509` - Use X.509 client certificates without custom
|
16460
|
+
# authentication and authorization. For more information, see [X.509
|
16461
|
+
# client certificates][2].
|
16462
|
+
#
|
16463
|
+
# ^
|
16464
|
+
# ^
|
16465
|
+
#
|
16466
|
+
# * `AWS_SIGV4` - Use Amazon Web Services Signature Version 4. For
|
16467
|
+
# more information, see [IAM users, groups, and roles][1].
|
16468
|
+
#
|
16469
|
+
# ^
|
16470
|
+
# ^
|
16471
|
+
#
|
16472
|
+
# * `DEFAULT ` - Use a combination of port and Application Layer
|
16473
|
+
# Protocol Negotiation (ALPN) to specify authentication type. For
|
16474
|
+
# more information, see [Device communication protocols][3].
|
16475
|
+
#
|
16476
|
+
# ^
|
16477
|
+
#
|
16478
|
+
#
|
16479
|
+
#
|
16480
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/custom-authentication.html
|
16481
|
+
# [2]: https://docs.aws.amazon.com/iot/latest/developerguide/x509-client-certs.html
|
16482
|
+
# [3]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
16483
|
+
# @return [String]
|
16484
|
+
#
|
16485
|
+
# @!attribute [rw] application_protocol
|
16486
|
+
# An enumerated string that specifies the application-layer protocol.
|
16487
|
+
#
|
16488
|
+
# * `SECURE_MQTT` - MQTT over TLS.
|
16489
|
+
#
|
16490
|
+
# ^
|
16491
|
+
# ^
|
16492
|
+
#
|
16493
|
+
# * `MQTT_WSS` - MQTT over WebSocket.
|
16494
|
+
#
|
16495
|
+
# ^
|
16496
|
+
# ^
|
16497
|
+
#
|
16498
|
+
# * `HTTPS` - HTTP over TLS.
|
16499
|
+
#
|
16500
|
+
# ^
|
16501
|
+
# ^
|
16502
|
+
#
|
16503
|
+
# * `DEFAULT` - Use a combination of port and Application Layer
|
16504
|
+
# Protocol Negotiation (ALPN) to specify application\_layer
|
16505
|
+
# protocol. For more information, see [Device communication
|
16506
|
+
# protocols][1].
|
16507
|
+
#
|
16508
|
+
# ^
|
16509
|
+
#
|
16510
|
+
#
|
16511
|
+
#
|
16512
|
+
# [1]: https://docs.aws.amazon.com/iot/latest/developerguide/protocols.html
|
16513
|
+
# @return [String]
|
16514
|
+
#
|
16515
|
+
# @!attribute [rw] client_certificate_config
|
16516
|
+
# An object that specifies the client certificate configuration for a
|
16517
|
+
# domain.
|
16518
|
+
# @return [Types::ClientCertificateConfig]
|
16519
|
+
#
|
16269
16520
|
class UpdateDomainConfigurationRequest < Struct.new(
|
16270
16521
|
:domain_configuration_name,
|
16271
16522
|
:authorizer_config,
|
16272
16523
|
:domain_configuration_status,
|
16273
16524
|
:remove_authorizer_config,
|
16274
16525
|
:tls_config,
|
16275
|
-
:server_certificate_config
|
16526
|
+
:server_certificate_config,
|
16527
|
+
:authentication_type,
|
16528
|
+
:application_protocol,
|
16529
|
+
:client_certificate_config)
|
16276
16530
|
SENSITIVE = []
|
16277
16531
|
include Aws::Structure
|
16278
16532
|
end
|
@@ -16645,7 +16899,7 @@ module Aws::IoT
|
|
16645
16899
|
#
|
16646
16900
|
# @!attribute [rw] recipe
|
16647
16901
|
# The inline job document associated with a software package version
|
16648
|
-
# used for a quick job deployment
|
16902
|
+
# used for a quick job deployment.
|
16649
16903
|
# @return [String]
|
16650
16904
|
#
|
16651
16905
|
# @!attribute [rw] client_token
|
data/lib/aws-sdk-iot.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -429,6 +429,11 @@ module Aws
|
|
429
429
|
},
|
430
430
|
?server_certificate_config: {
|
431
431
|
enable_ocsp_check: bool?
|
432
|
+
},
|
433
|
+
?authentication_type: ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT"),
|
434
|
+
?application_protocol: ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT"),
|
435
|
+
?client_certificate_config: {
|
436
|
+
client_certificate_callback_arn: ::String?
|
432
437
|
}
|
433
438
|
) -> _CreateDomainConfigurationResponseSuccess
|
434
439
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainConfigurationResponseSuccess
|
@@ -2101,6 +2106,9 @@ module Aws
|
|
2101
2106
|
def last_status_change_date: () -> ::Time
|
2102
2107
|
def tls_config: () -> Types::TlsConfig
|
2103
2108
|
def server_certificate_config: () -> Types::ServerCertificateConfig
|
2109
|
+
def authentication_type: () -> ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT")
|
2110
|
+
def application_protocol: () -> ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT")
|
2111
|
+
def client_certificate_config: () -> Types::ClientCertificateConfig
|
2104
2112
|
end
|
2105
2113
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoT/Client.html#describe_domain_configuration-instance_method
|
2106
2114
|
def describe_domain_configuration: (
|
@@ -4495,6 +4503,11 @@ module Aws
|
|
4495
4503
|
},
|
4496
4504
|
?server_certificate_config: {
|
4497
4505
|
enable_ocsp_check: bool?
|
4506
|
+
},
|
4507
|
+
?authentication_type: ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT"),
|
4508
|
+
?application_protocol: ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT"),
|
4509
|
+
?client_certificate_config: {
|
4510
|
+
client_certificate_callback_arn: ::String?
|
4498
4511
|
}
|
4499
4512
|
) -> _UpdateDomainConfigurationResponseSuccess
|
4500
4513
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainConfigurationResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -555,6 +555,11 @@ module Aws::IoT
|
|
555
555
|
class ClearDefaultAuthorizerResponse < Aws::EmptyStructure
|
556
556
|
end
|
557
557
|
|
558
|
+
class ClientCertificateConfig
|
559
|
+
attr_accessor client_certificate_callback_arn: ::String
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
558
563
|
class CloudwatchAlarmAction
|
559
564
|
attr_accessor role_arn: ::String
|
560
565
|
attr_accessor alarm_name: ::String
|
@@ -735,6 +740,9 @@ module Aws::IoT
|
|
735
740
|
attr_accessor tags: ::Array[Types::Tag]
|
736
741
|
attr_accessor tls_config: Types::TlsConfig
|
737
742
|
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
743
|
+
attr_accessor authentication_type: ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT")
|
744
|
+
attr_accessor application_protocol: ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT")
|
745
|
+
attr_accessor client_certificate_config: Types::ClientCertificateConfig
|
738
746
|
SENSITIVE: []
|
739
747
|
end
|
740
748
|
|
@@ -1613,6 +1621,9 @@ module Aws::IoT
|
|
1613
1621
|
attr_accessor last_status_change_date: ::Time
|
1614
1622
|
attr_accessor tls_config: Types::TlsConfig
|
1615
1623
|
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
1624
|
+
attr_accessor authentication_type: ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT")
|
1625
|
+
attr_accessor application_protocol: ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT")
|
1626
|
+
attr_accessor client_certificate_config: Types::ClientCertificateConfig
|
1616
1627
|
SENSITIVE: []
|
1617
1628
|
end
|
1618
1629
|
|
@@ -4714,6 +4725,9 @@ module Aws::IoT
|
|
4714
4725
|
attr_accessor remove_authorizer_config: bool
|
4715
4726
|
attr_accessor tls_config: Types::TlsConfig
|
4716
4727
|
attr_accessor server_certificate_config: Types::ServerCertificateConfig
|
4728
|
+
attr_accessor authentication_type: ("CUSTOM_AUTH_X509" | "CUSTOM_AUTH" | "AWS_X509" | "AWS_SIGV4" | "DEFAULT")
|
4729
|
+
attr_accessor application_protocol: ("SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT")
|
4730
|
+
attr_accessor client_certificate_config: Types::ClientCertificateConfig
|
4717
4731
|
SENSITIVE: []
|
4718
4732
|
end
|
4719
4733
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-iot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.137.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.210.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.210.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|