aws-sdk-elasticsearchservice 1.26.0 → 1.27.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9a28562cf9b41887cd7deebe5bd33e6035c20741
4
- data.tar.gz: 3a8d2408097c32779e05a6c898c6ebf883b9a5aa
3
+ metadata.gz: bcd12e6774d85d89854402d66b7e70da65b61b20
4
+ data.tar.gz: 2d1f69a64accb63dc689530f18a06ac2ac0aa7cc
5
5
  SHA512:
6
- metadata.gz: 5f58612d16cb6b7de5d5d5076c0ed6c2b9b75cf025a72893db6994fe0c9391bf51a99cb2bfc0cae2ec3cec58709f1faf3e9a8179f4e589db9b0a080586ccc314
7
- data.tar.gz: c7579252e47f7510544a60f6438d33dc48580a9b9cb379d9e655ebdfde730e59ed2b7128f7f1bd71aa370ebb5c48f267db92a6bd98d5873893b810e86ccfe50d
6
+ metadata.gz: 973643cbb88189f9bc09125df76106955e39a5771f7ca8bfbc7976e76111a321c658509c064e31869ec413657b52a60d61fd5b9f9f88b0950dc3e7e61af5993b
7
+ data.tar.gz: 54ffaf53abb38fabf7f1d504da1d30cf494f084d0fc86c4f079f03faf88dd49a042f8f363f562cf55326bc626886e9fa32beba18b0765edc7228b493f36efcc3
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
42
42
  # @service
43
43
  module Aws::ElasticsearchService
44
44
 
45
- GEM_VERSION = '1.26.0'
45
+ GEM_VERSION = '1.27.0'
46
46
 
47
47
  end
@@ -336,7 +336,7 @@ module Aws::ElasticsearchService
336
336
  # @option params [required, String] :domain_name
337
337
  # The name of the Elasticsearch domain that you are creating. Domain
338
338
  # names are unique across the domains owned by an account within an AWS
339
- # region. Domain names must start with a letter or number and can
339
+ # region. Domain names must start with a lowercase letter and can
340
340
  # contain the following characters: a-z (lowercase), 0-9, and -
341
341
  # (hyphen).
342
342
  #
@@ -403,6 +403,10 @@ module Aws::ElasticsearchService
403
403
  # Map of `LogType` and `LogPublishingOption`, each containing options to
404
404
  # publish a given type of Elasticsearch log.
405
405
  #
406
+ # @option params [Types::DomainEndpointOptions] :domain_endpoint_options
407
+ # Options to specify configuration that will be applied to the domain
408
+ # endpoint.
409
+ #
406
410
  # @return [Types::CreateElasticsearchDomainResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
407
411
  #
408
412
  # * {Types::CreateElasticsearchDomainResponse#domain_status #domain_status} => Types::ElasticsearchDomainStatus
@@ -459,6 +463,10 @@ module Aws::ElasticsearchService
459
463
  # enabled: false,
460
464
  # },
461
465
  # },
466
+ # domain_endpoint_options: {
467
+ # enforce_https: false,
468
+ # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
469
+ # },
462
470
  # })
463
471
  #
464
472
  # @example Response structure
@@ -513,6 +521,8 @@ module Aws::ElasticsearchService
513
521
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
514
522
  # resp.domain_status.service_software_options.description #=> String
515
523
  # resp.domain_status.service_software_options.automated_update_date #=> Time
524
+ # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
525
+ # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
516
526
  #
517
527
  # @overload create_elasticsearch_domain(params = {})
518
528
  # @param [Hash] params ({})
@@ -590,6 +600,8 @@ module Aws::ElasticsearchService
590
600
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
591
601
  # resp.domain_status.service_software_options.description #=> String
592
602
  # resp.domain_status.service_software_options.automated_update_date #=> Time
603
+ # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
604
+ # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
593
605
  #
594
606
  # @overload delete_elasticsearch_domain(params = {})
595
607
  # @param [Hash] params ({})
@@ -687,6 +699,8 @@ module Aws::ElasticsearchService
687
699
  # resp.domain_status.service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
688
700
  # resp.domain_status.service_software_options.description #=> String
689
701
  # resp.domain_status.service_software_options.automated_update_date #=> Time
702
+ # resp.domain_status.domain_endpoint_options.enforce_https #=> Boolean
703
+ # resp.domain_status.domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
690
704
  #
691
705
  # @overload describe_elasticsearch_domain(params = {})
692
706
  # @param [Hash] params ({})
@@ -802,6 +816,13 @@ module Aws::ElasticsearchService
802
816
  # resp.domain_config.log_publishing_options.status.update_version #=> Integer
803
817
  # resp.domain_config.log_publishing_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
804
818
  # resp.domain_config.log_publishing_options.status.pending_deletion #=> Boolean
819
+ # resp.domain_config.domain_endpoint_options.options.enforce_https #=> Boolean
820
+ # resp.domain_config.domain_endpoint_options.options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
821
+ # resp.domain_config.domain_endpoint_options.status.creation_date #=> Time
822
+ # resp.domain_config.domain_endpoint_options.status.update_date #=> Time
823
+ # resp.domain_config.domain_endpoint_options.status.update_version #=> Integer
824
+ # resp.domain_config.domain_endpoint_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
825
+ # resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
805
826
  #
806
827
  # @overload describe_elasticsearch_domain_config(params = {})
807
828
  # @param [Hash] params ({})
@@ -880,6 +901,8 @@ module Aws::ElasticsearchService
880
901
  # resp.domain_status_list[0].service_software_options.update_status #=> String, one of "PENDING_UPDATE", "IN_PROGRESS", "COMPLETED", "NOT_ELIGIBLE", "ELIGIBLE"
881
902
  # resp.domain_status_list[0].service_software_options.description #=> String
882
903
  # resp.domain_status_list[0].service_software_options.automated_update_date #=> Time
904
+ # resp.domain_status_list[0].domain_endpoint_options.enforce_https #=> Boolean
905
+ # resp.domain_status_list[0].domain_endpoint_options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
883
906
  #
884
907
  # @overload describe_elasticsearch_domains(params = {})
885
908
  # @param [Hash] params ({})
@@ -1445,6 +1468,10 @@ module Aws::ElasticsearchService
1445
1468
  # Map of `LogType` and `LogPublishingOption`, each containing options to
1446
1469
  # publish a given type of Elasticsearch log.
1447
1470
  #
1471
+ # @option params [Types::DomainEndpointOptions] :domain_endpoint_options
1472
+ # Options to specify configuration that will be applied to the domain
1473
+ # endpoint.
1474
+ #
1448
1475
  # @return [Types::UpdateElasticsearchDomainConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1449
1476
  #
1450
1477
  # * {Types::UpdateElasticsearchDomainConfigResponse#domain_config #domain_config} => Types::ElasticsearchDomainConfig
@@ -1493,6 +1520,10 @@ module Aws::ElasticsearchService
1493
1520
  # enabled: false,
1494
1521
  # },
1495
1522
  # },
1523
+ # domain_endpoint_options: {
1524
+ # enforce_https: false,
1525
+ # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
1526
+ # },
1496
1527
  # })
1497
1528
  #
1498
1529
  # @example Response structure
@@ -1585,6 +1616,13 @@ module Aws::ElasticsearchService
1585
1616
  # resp.domain_config.log_publishing_options.status.update_version #=> Integer
1586
1617
  # resp.domain_config.log_publishing_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1587
1618
  # resp.domain_config.log_publishing_options.status.pending_deletion #=> Boolean
1619
+ # resp.domain_config.domain_endpoint_options.options.enforce_https #=> Boolean
1620
+ # resp.domain_config.domain_endpoint_options.options.tls_security_policy #=> String, one of "Policy-Min-TLS-1-0-2019-07", "Policy-Min-TLS-1-2-2019-07"
1621
+ # resp.domain_config.domain_endpoint_options.status.creation_date #=> Time
1622
+ # resp.domain_config.domain_endpoint_options.status.update_date #=> Time
1623
+ # resp.domain_config.domain_endpoint_options.status.update_version #=> Integer
1624
+ # resp.domain_config.domain_endpoint_options.status.state #=> String, one of "RequiresIndexDocuments", "Processing", "Active"
1625
+ # resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
1588
1626
  #
1589
1627
  # @overload update_elasticsearch_domain_config(params = {})
1590
1628
  # @param [Hash] params ({})
@@ -1650,7 +1688,7 @@ module Aws::ElasticsearchService
1650
1688
  params: params,
1651
1689
  config: config)
1652
1690
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
1653
- context[:gem_version] = '1.26.0'
1691
+ context[:gem_version] = '1.27.0'
1654
1692
  Seahorse::Client::Request.new(handlers, context)
1655
1693
  end
1656
1694
 
@@ -46,6 +46,8 @@ module Aws::ElasticsearchService
46
46
  DescribeReservedElasticsearchInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesRequest')
47
47
  DescribeReservedElasticsearchInstancesResponse = Shapes::StructureShape.new(name: 'DescribeReservedElasticsearchInstancesResponse')
48
48
  DisabledOperationException = Shapes::StructureShape.new(name: 'DisabledOperationException')
49
+ DomainEndpointOptions = Shapes::StructureShape.new(name: 'DomainEndpointOptions')
50
+ DomainEndpointOptionsStatus = Shapes::StructureShape.new(name: 'DomainEndpointOptionsStatus')
49
51
  DomainId = Shapes::StringShape.new(name: 'DomainId')
50
52
  DomainInfo = Shapes::StructureShape.new(name: 'DomainInfo')
51
53
  DomainInfoList = Shapes::ListShape.new(name: 'DomainInfoList')
@@ -142,6 +144,7 @@ module Aws::ElasticsearchService
142
144
  StorageTypeName = Shapes::StringShape.new(name: 'StorageTypeName')
143
145
  String = Shapes::StringShape.new(name: 'String')
144
146
  StringList = Shapes::ListShape.new(name: 'StringList')
147
+ TLSSecurityPolicy = Shapes::StringShape.new(name: 'TLSSecurityPolicy')
145
148
  Tag = Shapes::StructureShape.new(name: 'Tag')
146
149
  TagKey = Shapes::StringShape.new(name: 'TagKey')
147
150
  TagList = Shapes::ListShape.new(name: 'TagList')
@@ -225,6 +228,7 @@ module Aws::ElasticsearchService
225
228
  CreateElasticsearchDomainRequest.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptions, location_name: "NodeToNodeEncryptionOptions"))
226
229
  CreateElasticsearchDomainRequest.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
227
230
  CreateElasticsearchDomainRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
231
+ CreateElasticsearchDomainRequest.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
228
232
  CreateElasticsearchDomainRequest.struct_class = Types::CreateElasticsearchDomainRequest
229
233
 
230
234
  CreateElasticsearchDomainResponse.add_member(:domain_status, Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus, location_name: "DomainStatus"))
@@ -280,6 +284,14 @@ module Aws::ElasticsearchService
280
284
  DescribeReservedElasticsearchInstancesResponse.add_member(:reserved_elasticsearch_instances, Shapes::ShapeRef.new(shape: ReservedElasticsearchInstanceList, location_name: "ReservedElasticsearchInstances"))
281
285
  DescribeReservedElasticsearchInstancesResponse.struct_class = Types::DescribeReservedElasticsearchInstancesResponse
282
286
 
287
+ DomainEndpointOptions.add_member(:enforce_https, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnforceHTTPS"))
288
+ DomainEndpointOptions.add_member(:tls_security_policy, Shapes::ShapeRef.new(shape: TLSSecurityPolicy, location_name: "TLSSecurityPolicy"))
289
+ DomainEndpointOptions.struct_class = Types::DomainEndpointOptions
290
+
291
+ DomainEndpointOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, required: true, location_name: "Options"))
292
+ DomainEndpointOptionsStatus.add_member(:status, Shapes::ShapeRef.new(shape: OptionStatus, required: true, location_name: "Status"))
293
+ DomainEndpointOptionsStatus.struct_class = Types::DomainEndpointOptionsStatus
294
+
283
295
  DomainInfo.add_member(:domain_name, Shapes::ShapeRef.new(shape: DomainName, location_name: "DomainName"))
284
296
  DomainInfo.struct_class = Types::DomainInfo
285
297
 
@@ -321,6 +333,7 @@ module Aws::ElasticsearchService
321
333
  ElasticsearchDomainConfig.add_member(:node_to_node_encryption_options, Shapes::ShapeRef.new(shape: NodeToNodeEncryptionOptionsStatus, location_name: "NodeToNodeEncryptionOptions"))
322
334
  ElasticsearchDomainConfig.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptionsStatus, location_name: "AdvancedOptions"))
323
335
  ElasticsearchDomainConfig.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptionsStatus, location_name: "LogPublishingOptions"))
336
+ ElasticsearchDomainConfig.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptionsStatus, location_name: "DomainEndpointOptions"))
324
337
  ElasticsearchDomainConfig.struct_class = Types::ElasticsearchDomainConfig
325
338
 
326
339
  ElasticsearchDomainStatus.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "DomainId"))
@@ -344,6 +357,7 @@ module Aws::ElasticsearchService
344
357
  ElasticsearchDomainStatus.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
345
358
  ElasticsearchDomainStatus.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
346
359
  ElasticsearchDomainStatus.add_member(:service_software_options, Shapes::ShapeRef.new(shape: ServiceSoftwareOptions, location_name: "ServiceSoftwareOptions"))
360
+ ElasticsearchDomainStatus.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
347
361
  ElasticsearchDomainStatus.struct_class = Types::ElasticsearchDomainStatus
348
362
 
349
363
  ElasticsearchDomainStatusList.member = Shapes::ShapeRef.new(shape: ElasticsearchDomainStatus)
@@ -561,6 +575,7 @@ module Aws::ElasticsearchService
561
575
  UpdateElasticsearchDomainConfigRequest.add_member(:advanced_options, Shapes::ShapeRef.new(shape: AdvancedOptions, location_name: "AdvancedOptions"))
562
576
  UpdateElasticsearchDomainConfigRequest.add_member(:access_policies, Shapes::ShapeRef.new(shape: PolicyDocument, location_name: "AccessPolicies"))
563
577
  UpdateElasticsearchDomainConfigRequest.add_member(:log_publishing_options, Shapes::ShapeRef.new(shape: LogPublishingOptions, location_name: "LogPublishingOptions"))
578
+ UpdateElasticsearchDomainConfigRequest.add_member(:domain_endpoint_options, Shapes::ShapeRef.new(shape: DomainEndpointOptions, location_name: "DomainEndpointOptions"))
564
579
  UpdateElasticsearchDomainConfigRequest.struct_class = Types::UpdateElasticsearchDomainConfigRequest
565
580
 
566
581
  UpdateElasticsearchDomainConfigResponse.add_member(:domain_config, Shapes::ShapeRef.new(shape: ElasticsearchDomainConfig, required: true, location_name: "DomainConfig"))
@@ -293,12 +293,16 @@ module Aws::ElasticsearchService
293
293
  # enabled: false,
294
294
  # },
295
295
  # },
296
+ # domain_endpoint_options: {
297
+ # enforce_https: false,
298
+ # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
299
+ # },
296
300
  # }
297
301
  #
298
302
  # @!attribute [rw] domain_name
299
303
  # The name of the Elasticsearch domain that you are creating. Domain
300
304
  # names are unique across the domains owned by an account within an
301
- # AWS region. Domain names must start with a letter or number and can
305
+ # AWS region. Domain names must start with a lowercase letter and can
302
306
  # contain the following characters: a-z (lowercase), 0-9, and -
303
307
  # (hyphen).
304
308
  # @return [String]
@@ -377,6 +381,11 @@ module Aws::ElasticsearchService
377
381
  # to publish a given type of Elasticsearch log.
378
382
  # @return [Hash<String,Types::LogPublishingOption>]
379
383
  #
384
+ # @!attribute [rw] domain_endpoint_options
385
+ # Options to specify configuration that will be applied to the domain
386
+ # endpoint.
387
+ # @return [Types::DomainEndpointOptions]
388
+ #
380
389
  class CreateElasticsearchDomainRequest < Struct.new(
381
390
  :domain_name,
382
391
  :elasticsearch_version,
@@ -389,7 +398,8 @@ module Aws::ElasticsearchService
389
398
  :encryption_at_rest_options,
390
399
  :node_to_node_encryption_options,
391
400
  :advanced_options,
392
- :log_publishing_options)
401
+ :log_publishing_options,
402
+ :domain_endpoint_options)
393
403
  include Aws::Structure
394
404
  end
395
405
 
@@ -687,6 +697,55 @@ module Aws::ElasticsearchService
687
697
  include Aws::Structure
688
698
  end
689
699
 
700
+ # Options to configure endpoint for the Elasticsearch domain.
701
+ #
702
+ # @note When making an API call, you may pass DomainEndpointOptions
703
+ # data as a hash:
704
+ #
705
+ # {
706
+ # enforce_https: false,
707
+ # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
708
+ # }
709
+ #
710
+ # @!attribute [rw] enforce_https
711
+ # Specify if only HTTPS endpoint should be enabled for the
712
+ # Elasticsearch domain.
713
+ # @return [Boolean]
714
+ #
715
+ # @!attribute [rw] tls_security_policy
716
+ # Specify the TLS security policy that needs to be applied to the
717
+ # HTTPS endpoint of Elasticsearch domain.
718
+ # It can be one of the following values: *
719
+ # <b>Policy-Min-TLS-1-0-2019-07: </b> TLS security policy which
720
+ # supports TLSv1.0 and higher.
721
+ # * <b>Policy-Min-TLS-1-2-2019-07: </b> TLS security policy which
722
+ # supports only TLSv1.2
723
+ # @return [String]
724
+ #
725
+ class DomainEndpointOptions < Struct.new(
726
+ :enforce_https,
727
+ :tls_security_policy)
728
+ include Aws::Structure
729
+ end
730
+
731
+ # The configured endpoint options for the domain and their current
732
+ # status.
733
+ #
734
+ # @!attribute [rw] options
735
+ # Options to configure endpoint for the Elasticsearch domain.
736
+ # @return [Types::DomainEndpointOptions]
737
+ #
738
+ # @!attribute [rw] status
739
+ # The status of the endpoint options for the Elasticsearch domain. See
740
+ # `OptionStatus` for the status information that's included.
741
+ # @return [Types::OptionStatus]
742
+ #
743
+ class DomainEndpointOptionsStatus < Struct.new(
744
+ :options,
745
+ :status)
746
+ include Aws::Structure
747
+ end
748
+
690
749
  # @!attribute [rw] domain_name
691
750
  # Specifies the `DomainName`.
692
751
  # @return [String]
@@ -908,6 +967,10 @@ module Aws::ElasticsearchService
908
967
  # Log publishing options for the given domain.
909
968
  # @return [Types::LogPublishingOptionsStatus]
910
969
  #
970
+ # @!attribute [rw] domain_endpoint_options
971
+ # Specifies the `DomainEndpointOptions` for the Elasticsearch domain.
972
+ # @return [Types::DomainEndpointOptionsStatus]
973
+ #
911
974
  class ElasticsearchDomainConfig < Struct.new(
912
975
  :elasticsearch_version,
913
976
  :elasticsearch_cluster_config,
@@ -919,7 +982,8 @@ module Aws::ElasticsearchService
919
982
  :encryption_at_rest_options,
920
983
  :node_to_node_encryption_options,
921
984
  :advanced_options,
922
- :log_publishing_options)
985
+ :log_publishing_options,
986
+ :domain_endpoint_options)
923
987
  include Aws::Structure
924
988
  end
925
989
 
@@ -1044,6 +1108,10 @@ module Aws::ElasticsearchService
1044
1108
  # The current status of the Elasticsearch domain's service software.
1045
1109
  # @return [Types::ServiceSoftwareOptions]
1046
1110
  #
1111
+ # @!attribute [rw] domain_endpoint_options
1112
+ # The current status of the Elasticsearch domain's endpoint options.
1113
+ # @return [Types::DomainEndpointOptions]
1114
+ #
1047
1115
  class ElasticsearchDomainStatus < Struct.new(
1048
1116
  :domain_id,
1049
1117
  :domain_name,
@@ -1065,7 +1133,8 @@ module Aws::ElasticsearchService
1065
1133
  :node_to_node_encryption_options,
1066
1134
  :advanced_options,
1067
1135
  :log_publishing_options,
1068
- :service_software_options)
1136
+ :service_software_options,
1137
+ :domain_endpoint_options)
1069
1138
  include Aws::Structure
1070
1139
  end
1071
1140
 
@@ -2078,6 +2147,10 @@ module Aws::ElasticsearchService
2078
2147
  # enabled: false,
2079
2148
  # },
2080
2149
  # },
2150
+ # domain_endpoint_options: {
2151
+ # enforce_https: false,
2152
+ # tls_security_policy: "Policy-Min-TLS-1-0-2019-07", # accepts Policy-Min-TLS-1-0-2019-07, Policy-Min-TLS-1-2-2019-07
2153
+ # },
2081
2154
  # }
2082
2155
  #
2083
2156
  # @!attribute [rw] domain_name
@@ -2138,6 +2211,11 @@ module Aws::ElasticsearchService
2138
2211
  # to publish a given type of Elasticsearch log.
2139
2212
  # @return [Hash<String,Types::LogPublishingOption>]
2140
2213
  #
2214
+ # @!attribute [rw] domain_endpoint_options
2215
+ # Options to specify configuration that will be applied to the domain
2216
+ # endpoint.
2217
+ # @return [Types::DomainEndpointOptions]
2218
+ #
2141
2219
  class UpdateElasticsearchDomainConfigRequest < Struct.new(
2142
2220
  :domain_name,
2143
2221
  :elasticsearch_cluster_config,
@@ -2147,7 +2225,8 @@ module Aws::ElasticsearchService
2147
2225
  :cognito_options,
2148
2226
  :advanced_options,
2149
2227
  :access_policies,
2150
- :log_publishing_options)
2228
+ :log_publishing_options,
2229
+ :domain_endpoint_options)
2151
2230
  include Aws::Structure
2152
2231
  end
2153
2232
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticsearchservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.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: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core