aws-sdk-elasticsearchservice 1.39.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf54ac2fc8ebc914e560cd0c52a46b780d53281f07cf65f4f2a5c1ce96606fe5
4
- data.tar.gz: f7e8e3bcf5f106863182f679e4884825039e0243de2f6b589f81c74bbc3b3c2f
3
+ metadata.gz: f888e07daee2e1ad49959f53a9483c02cb9c2201b5177700f1e01991b2c7bbbd
4
+ data.tar.gz: 0bea7037dd8ec0d6f66ec023b497a648dc4fcec7f6ea60fa7e523810a7d341ee
5
5
  SHA512:
6
- metadata.gz: aa0699be373aabedda3ba220bca2d8705ebad971982c4a91db204367ab0f80aa2a4d5e7eff4ea77b5b56af6db980c6607c418c4e560d2d758253a479dcf8e5d3
7
- data.tar.gz: c632f5ee6f42cdf483cb1fcce8efb46c08f5cfccb992b039f2a53992d244b1b4d50148036a0977bbe13d21364c54beba2d4bac5744a3c367eae01b9d52e7fd79
6
+ metadata.gz: 7f151bde6ee666ff4c36fe31fa8b91a96feaf4a9f0b76a10f82cabc5fbf1f6b1b9d1644e3ffc734dec3ef6f4b0e3486c36c2d2ad2935a68346dc334faeb965f1
7
+ data.tar.gz: 87f0a3da3bdcc54d3174cf17a28cd31866634e0b9788fce83678419f434eeed056a02154a88d3c04ea237054702f59079990dbf708bc7c5b28355c0ed5f109c7
@@ -7,6 +7,7 @@
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
10
+
10
11
  require 'aws-sdk-core'
11
12
  require 'aws-sigv4'
12
13
 
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-elasticsearchservice/customizations'
44
45
  #
45
46
  # See {Errors} for more information.
46
47
  #
47
- # @service
48
+ # @!group service
48
49
  module Aws::ElasticsearchService
49
50
 
50
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.44.0'
51
52
 
52
53
  end
@@ -85,13 +85,28 @@ module Aws::ElasticsearchService
85
85
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
86
86
  # credentials.
87
87
  #
88
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
89
+ # shared file, such as `~/.aws/config`.
90
+ #
91
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
92
+ #
93
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
94
+ # assume a role after providing credentials via the web.
95
+ #
96
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
97
+ # access token generated from `aws login`.
98
+ #
99
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
100
+ # process that outputs to stdout.
101
+ #
88
102
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
89
103
  # from an EC2 IMDS on an EC2 instance.
90
104
  #
91
- # * `Aws::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
108
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
109
+ # from the Cognito Identity service.
95
110
  #
96
111
  # When `:credentials` are not configured directly, the following
97
112
  # locations will be searched for credentials:
@@ -101,10 +116,10 @@ module Aws::ElasticsearchService
101
116
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
102
117
  # * `~/.aws/credentials`
103
118
  # * `~/.aws/config`
104
- # * EC2 IMDS instance profile - When used by default, the timeouts are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
107
- # timeouts.
119
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
+ # are very aggressive. Construct and pass an instance of
121
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
+ # enable retries and extended timeouts.
108
123
  #
109
124
  # @option options [required, String] :region
110
125
  # The AWS region to connect to. The configured `:region` is
@@ -614,6 +629,18 @@ module Aws::ElasticsearchService
614
629
  # master_user_name: "Username",
615
630
  # master_user_password: "Password",
616
631
  # },
632
+ # saml_options: {
633
+ # enabled: false,
634
+ # idp: {
635
+ # metadata_content: "SAMLMetadata", # required
636
+ # entity_id: "SAMLEntityId", # required
637
+ # },
638
+ # master_user_name: "Username",
639
+ # master_backend_role: "BackendRole",
640
+ # subject_key: "String",
641
+ # roles_key: "String",
642
+ # session_timeout_minutes: 1,
643
+ # },
617
644
  # },
618
645
  # })
619
646
  #
@@ -677,6 +704,12 @@ module Aws::ElasticsearchService
677
704
  # 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"
678
705
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
679
706
  # resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
707
+ # resp.domain_status.advanced_security_options.saml_options.enabled #=> Boolean
708
+ # resp.domain_status.advanced_security_options.saml_options.idp.metadata_content #=> String
709
+ # resp.domain_status.advanced_security_options.saml_options.idp.entity_id #=> String
710
+ # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
711
+ # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
712
+ # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
680
713
  #
681
714
  # @overload create_elasticsearch_domain(params = {})
682
715
  # @param [Hash] params ({})
@@ -868,6 +901,12 @@ module Aws::ElasticsearchService
868
901
  # 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"
869
902
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
870
903
  # resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
904
+ # resp.domain_status.advanced_security_options.saml_options.enabled #=> Boolean
905
+ # resp.domain_status.advanced_security_options.saml_options.idp.metadata_content #=> String
906
+ # resp.domain_status.advanced_security_options.saml_options.idp.entity_id #=> String
907
+ # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
908
+ # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
909
+ # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
871
910
  #
872
911
  # @overload delete_elasticsearch_domain(params = {})
873
912
  # @param [Hash] params ({})
@@ -1078,6 +1117,12 @@ module Aws::ElasticsearchService
1078
1117
  # 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"
1079
1118
  # resp.domain_status.advanced_security_options.enabled #=> Boolean
1080
1119
  # resp.domain_status.advanced_security_options.internal_user_database_enabled #=> Boolean
1120
+ # resp.domain_status.advanced_security_options.saml_options.enabled #=> Boolean
1121
+ # resp.domain_status.advanced_security_options.saml_options.idp.metadata_content #=> String
1122
+ # resp.domain_status.advanced_security_options.saml_options.idp.entity_id #=> String
1123
+ # resp.domain_status.advanced_security_options.saml_options.subject_key #=> String
1124
+ # resp.domain_status.advanced_security_options.saml_options.roles_key #=> String
1125
+ # resp.domain_status.advanced_security_options.saml_options.session_timeout_minutes #=> Integer
1081
1126
  #
1082
1127
  # @overload describe_elasticsearch_domain(params = {})
1083
1128
  # @param [Hash] params ({})
@@ -1205,6 +1250,12 @@ module Aws::ElasticsearchService
1205
1250
  # resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
1206
1251
  # resp.domain_config.advanced_security_options.options.enabled #=> Boolean
1207
1252
  # resp.domain_config.advanced_security_options.options.internal_user_database_enabled #=> Boolean
1253
+ # resp.domain_config.advanced_security_options.options.saml_options.enabled #=> Boolean
1254
+ # resp.domain_config.advanced_security_options.options.saml_options.idp.metadata_content #=> String
1255
+ # resp.domain_config.advanced_security_options.options.saml_options.idp.entity_id #=> String
1256
+ # resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
1257
+ # resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
1258
+ # resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
1208
1259
  # resp.domain_config.advanced_security_options.status.creation_date #=> Time
1209
1260
  # resp.domain_config.advanced_security_options.status.update_date #=> Time
1210
1261
  # resp.domain_config.advanced_security_options.status.update_version #=> Integer
@@ -1296,6 +1347,12 @@ module Aws::ElasticsearchService
1296
1347
  # 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"
1297
1348
  # resp.domain_status_list[0].advanced_security_options.enabled #=> Boolean
1298
1349
  # resp.domain_status_list[0].advanced_security_options.internal_user_database_enabled #=> Boolean
1350
+ # resp.domain_status_list[0].advanced_security_options.saml_options.enabled #=> Boolean
1351
+ # resp.domain_status_list[0].advanced_security_options.saml_options.idp.metadata_content #=> String
1352
+ # resp.domain_status_list[0].advanced_security_options.saml_options.idp.entity_id #=> String
1353
+ # resp.domain_status_list[0].advanced_security_options.saml_options.subject_key #=> String
1354
+ # resp.domain_status_list[0].advanced_security_options.saml_options.roles_key #=> String
1355
+ # resp.domain_status_list[0].advanced_security_options.saml_options.session_timeout_minutes #=> Integer
1299
1356
  #
1300
1357
  # @overload describe_elasticsearch_domains(params = {})
1301
1358
  # @param [Hash] params ({})
@@ -2292,6 +2349,18 @@ module Aws::ElasticsearchService
2292
2349
  # master_user_name: "Username",
2293
2350
  # master_user_password: "Password",
2294
2351
  # },
2352
+ # saml_options: {
2353
+ # enabled: false,
2354
+ # idp: {
2355
+ # metadata_content: "SAMLMetadata", # required
2356
+ # entity_id: "SAMLEntityId", # required
2357
+ # },
2358
+ # master_user_name: "Username",
2359
+ # master_backend_role: "BackendRole",
2360
+ # subject_key: "String",
2361
+ # roles_key: "String",
2362
+ # session_timeout_minutes: 1,
2363
+ # },
2295
2364
  # },
2296
2365
  # })
2297
2366
  #
@@ -2397,6 +2466,12 @@ module Aws::ElasticsearchService
2397
2466
  # resp.domain_config.domain_endpoint_options.status.pending_deletion #=> Boolean
2398
2467
  # resp.domain_config.advanced_security_options.options.enabled #=> Boolean
2399
2468
  # resp.domain_config.advanced_security_options.options.internal_user_database_enabled #=> Boolean
2469
+ # resp.domain_config.advanced_security_options.options.saml_options.enabled #=> Boolean
2470
+ # resp.domain_config.advanced_security_options.options.saml_options.idp.metadata_content #=> String
2471
+ # resp.domain_config.advanced_security_options.options.saml_options.idp.entity_id #=> String
2472
+ # resp.domain_config.advanced_security_options.options.saml_options.subject_key #=> String
2473
+ # resp.domain_config.advanced_security_options.options.saml_options.roles_key #=> String
2474
+ # resp.domain_config.advanced_security_options.options.saml_options.session_timeout_minutes #=> Integer
2400
2475
  # resp.domain_config.advanced_security_options.status.creation_date #=> Time
2401
2476
  # resp.domain_config.advanced_security_options.status.update_date #=> Time
2402
2477
  # resp.domain_config.advanced_security_options.status.update_version #=> Integer
@@ -2467,7 +2542,7 @@ module Aws::ElasticsearchService
2467
2542
  params: params,
2468
2543
  config: config)
2469
2544
  context[:gem_name] = 'aws-sdk-elasticsearchservice'
2470
- context[:gem_version] = '1.39.0'
2545
+ context[:gem_version] = '1.44.0'
2471
2546
  Seahorse::Client::Request.new(handlers, context)
2472
2547
  end
2473
2548
 
@@ -28,6 +28,7 @@ module Aws::ElasticsearchService
28
28
  AdvancedSecurityOptionsStatus = Shapes::StructureShape.new(name: 'AdvancedSecurityOptionsStatus')
29
29
  AssociatePackageRequest = Shapes::StructureShape.new(name: 'AssociatePackageRequest')
30
30
  AssociatePackageResponse = Shapes::StructureShape.new(name: 'AssociatePackageResponse')
31
+ BackendRole = Shapes::StringShape.new(name: 'BackendRole')
31
32
  BaseException = Shapes::StructureShape.new(name: 'BaseException')
32
33
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
33
34
  CancelElasticsearchServiceSoftwareUpdateRequest = Shapes::StructureShape.new(name: 'CancelElasticsearchServiceSoftwareUpdateRequest')
@@ -208,6 +209,11 @@ module Aws::ElasticsearchService
208
209
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
209
210
  S3BucketName = Shapes::StringShape.new(name: 'S3BucketName')
210
211
  S3Key = Shapes::StringShape.new(name: 'S3Key')
212
+ SAMLEntityId = Shapes::StringShape.new(name: 'SAMLEntityId')
213
+ SAMLIdp = Shapes::StructureShape.new(name: 'SAMLIdp')
214
+ SAMLMetadata = Shapes::StringShape.new(name: 'SAMLMetadata')
215
+ SAMLOptionsInput = Shapes::StructureShape.new(name: 'SAMLOptionsInput')
216
+ SAMLOptionsOutput = Shapes::StructureShape.new(name: 'SAMLOptionsOutput')
211
217
  ServiceSoftwareOptions = Shapes::StructureShape.new(name: 'ServiceSoftwareOptions')
212
218
  ServiceUrl = Shapes::StringShape.new(name: 'ServiceUrl')
213
219
  SnapshotOptions = Shapes::StructureShape.new(name: 'SnapshotOptions')
@@ -282,11 +288,13 @@ module Aws::ElasticsearchService
282
288
 
283
289
  AdvancedSecurityOptions.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
284
290
  AdvancedSecurityOptions.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
291
+ AdvancedSecurityOptions.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsOutput, location_name: "SAMLOptions"))
285
292
  AdvancedSecurityOptions.struct_class = Types::AdvancedSecurityOptions
286
293
 
287
294
  AdvancedSecurityOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
288
295
  AdvancedSecurityOptionsInput.add_member(:internal_user_database_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "InternalUserDatabaseEnabled"))
289
296
  AdvancedSecurityOptionsInput.add_member(:master_user_options, Shapes::ShapeRef.new(shape: MasterUserOptions, location_name: "MasterUserOptions"))
297
+ AdvancedSecurityOptionsInput.add_member(:saml_options, Shapes::ShapeRef.new(shape: SAMLOptionsInput, location_name: "SAMLOptions"))
290
298
  AdvancedSecurityOptionsInput.struct_class = Types::AdvancedSecurityOptionsInput
291
299
 
292
300
  AdvancedSecurityOptionsStatus.add_member(:options, Shapes::ShapeRef.new(shape: AdvancedSecurityOptions, required: true, location_name: "Options"))
@@ -831,6 +839,26 @@ module Aws::ElasticsearchService
831
839
 
832
840
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
833
841
 
842
+ SAMLIdp.add_member(:metadata_content, Shapes::ShapeRef.new(shape: SAMLMetadata, required: true, location_name: "MetadataContent"))
843
+ SAMLIdp.add_member(:entity_id, Shapes::ShapeRef.new(shape: SAMLEntityId, required: true, location_name: "EntityId"))
844
+ SAMLIdp.struct_class = Types::SAMLIdp
845
+
846
+ SAMLOptionsInput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
847
+ SAMLOptionsInput.add_member(:idp, Shapes::ShapeRef.new(shape: SAMLIdp, location_name: "Idp"))
848
+ SAMLOptionsInput.add_member(:master_user_name, Shapes::ShapeRef.new(shape: Username, location_name: "MasterUserName"))
849
+ SAMLOptionsInput.add_member(:master_backend_role, Shapes::ShapeRef.new(shape: BackendRole, location_name: "MasterBackendRole"))
850
+ SAMLOptionsInput.add_member(:subject_key, Shapes::ShapeRef.new(shape: String, location_name: "SubjectKey"))
851
+ SAMLOptionsInput.add_member(:roles_key, Shapes::ShapeRef.new(shape: String, location_name: "RolesKey"))
852
+ SAMLOptionsInput.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "SessionTimeoutMinutes"))
853
+ SAMLOptionsInput.struct_class = Types::SAMLOptionsInput
854
+
855
+ SAMLOptionsOutput.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
856
+ SAMLOptionsOutput.add_member(:idp, Shapes::ShapeRef.new(shape: SAMLIdp, location_name: "Idp"))
857
+ SAMLOptionsOutput.add_member(:subject_key, Shapes::ShapeRef.new(shape: String, location_name: "SubjectKey"))
858
+ SAMLOptionsOutput.add_member(:roles_key, Shapes::ShapeRef.new(shape: String, location_name: "RolesKey"))
859
+ SAMLOptionsOutput.add_member(:session_timeout_minutes, Shapes::ShapeRef.new(shape: IntegerClass, location_name: "SessionTimeoutMinutes"))
860
+ SAMLOptionsOutput.struct_class = Types::SAMLOptionsOutput
861
+
834
862
  ServiceSoftwareOptions.add_member(:current_version, Shapes::ShapeRef.new(shape: String, location_name: "CurrentVersion"))
835
863
  ServiceSoftwareOptions.add_member(:new_version, Shapes::ShapeRef.new(shape: String, location_name: "NewVersion"))
836
864
  ServiceSoftwareOptions.add_member(:update_available, Shapes::ShapeRef.new(shape: Boolean, location_name: "UpdateAvailable"))
@@ -173,9 +173,14 @@ module Aws::ElasticsearchService
173
173
  # True if the internal user database is enabled.
174
174
  # @return [Boolean]
175
175
  #
176
+ # @!attribute [rw] saml_options
177
+ # Describes the SAML application configured for a domain.
178
+ # @return [Types::SAMLOptionsOutput]
179
+ #
176
180
  class AdvancedSecurityOptions < Struct.new(
177
181
  :enabled,
178
- :internal_user_database_enabled)
182
+ :internal_user_database_enabled,
183
+ :saml_options)
179
184
  SENSITIVE = []
180
185
  include Aws::Structure
181
186
  end
@@ -196,6 +201,18 @@ module Aws::ElasticsearchService
196
201
  # master_user_name: "Username",
197
202
  # master_user_password: "Password",
198
203
  # },
204
+ # saml_options: {
205
+ # enabled: false,
206
+ # idp: {
207
+ # metadata_content: "SAMLMetadata", # required
208
+ # entity_id: "SAMLEntityId", # required
209
+ # },
210
+ # master_user_name: "Username",
211
+ # master_backend_role: "BackendRole",
212
+ # subject_key: "String",
213
+ # roles_key: "String",
214
+ # session_timeout_minutes: 1,
215
+ # },
199
216
  # }
200
217
  #
201
218
  # @!attribute [rw] enabled
@@ -211,10 +228,15 @@ module Aws::ElasticsearchService
211
228
  # both.
212
229
  # @return [Types::MasterUserOptions]
213
230
  #
231
+ # @!attribute [rw] saml_options
232
+ # Specifies the SAML application configuration for the domain.
233
+ # @return [Types::SAMLOptionsInput]
234
+ #
214
235
  class AdvancedSecurityOptionsInput < Struct.new(
215
236
  :enabled,
216
237
  :internal_user_database_enabled,
217
- :master_user_options)
238
+ :master_user_options,
239
+ :saml_options)
218
240
  SENSITIVE = []
219
241
  include Aws::Structure
220
242
  end
@@ -479,6 +501,18 @@ module Aws::ElasticsearchService
479
501
  # master_user_name: "Username",
480
502
  # master_user_password: "Password",
481
503
  # },
504
+ # saml_options: {
505
+ # enabled: false,
506
+ # idp: {
507
+ # metadata_content: "SAMLMetadata", # required
508
+ # entity_id: "SAMLEntityId", # required
509
+ # },
510
+ # master_user_name: "Username",
511
+ # master_backend_role: "BackendRole",
512
+ # subject_key: "String",
513
+ # roles_key: "String",
514
+ # session_timeout_minutes: 1,
515
+ # },
482
516
  # },
483
517
  # }
484
518
  #
@@ -3184,6 +3218,125 @@ module Aws::ElasticsearchService
3184
3218
  #
3185
3219
  class ResourceNotFoundException < Aws::EmptyStructure; end
3186
3220
 
3221
+ # Specifies the SAML Identity Provider's information.
3222
+ #
3223
+ # @note When making an API call, you may pass SAMLIdp
3224
+ # data as a hash:
3225
+ #
3226
+ # {
3227
+ # metadata_content: "SAMLMetadata", # required
3228
+ # entity_id: "SAMLEntityId", # required
3229
+ # }
3230
+ #
3231
+ # @!attribute [rw] metadata_content
3232
+ # The Metadata of the SAML application in xml format.
3233
+ # @return [String]
3234
+ #
3235
+ # @!attribute [rw] entity_id
3236
+ # The unique Entity ID of the application in SAML Identity Provider.
3237
+ # @return [String]
3238
+ #
3239
+ class SAMLIdp < Struct.new(
3240
+ :metadata_content,
3241
+ :entity_id)
3242
+ SENSITIVE = []
3243
+ include Aws::Structure
3244
+ end
3245
+
3246
+ # Specifies the SAML application configuration for the domain.
3247
+ #
3248
+ # @note When making an API call, you may pass SAMLOptionsInput
3249
+ # data as a hash:
3250
+ #
3251
+ # {
3252
+ # enabled: false,
3253
+ # idp: {
3254
+ # metadata_content: "SAMLMetadata", # required
3255
+ # entity_id: "SAMLEntityId", # required
3256
+ # },
3257
+ # master_user_name: "Username",
3258
+ # master_backend_role: "BackendRole",
3259
+ # subject_key: "String",
3260
+ # roles_key: "String",
3261
+ # session_timeout_minutes: 1,
3262
+ # }
3263
+ #
3264
+ # @!attribute [rw] enabled
3265
+ # True if SAML is enabled.
3266
+ # @return [Boolean]
3267
+ #
3268
+ # @!attribute [rw] idp
3269
+ # Specifies the SAML Identity Provider's information.
3270
+ # @return [Types::SAMLIdp]
3271
+ #
3272
+ # @!attribute [rw] master_user_name
3273
+ # The SAML master username, which is stored in the Amazon
3274
+ # Elasticsearch Service domain's internal database.
3275
+ # @return [String]
3276
+ #
3277
+ # @!attribute [rw] master_backend_role
3278
+ # The backend role to which the SAML master user is mapped to.
3279
+ # @return [String]
3280
+ #
3281
+ # @!attribute [rw] subject_key
3282
+ # The key to use for matching the SAML Subject attribute.
3283
+ # @return [String]
3284
+ #
3285
+ # @!attribute [rw] roles_key
3286
+ # The key to use for matching the SAML Roles attribute.
3287
+ # @return [String]
3288
+ #
3289
+ # @!attribute [rw] session_timeout_minutes
3290
+ # The duration, in minutes, after which a user session becomes
3291
+ # inactive. Acceptable values are between 1 and 1440, and the default
3292
+ # value is 60.
3293
+ # @return [Integer]
3294
+ #
3295
+ class SAMLOptionsInput < Struct.new(
3296
+ :enabled,
3297
+ :idp,
3298
+ :master_user_name,
3299
+ :master_backend_role,
3300
+ :subject_key,
3301
+ :roles_key,
3302
+ :session_timeout_minutes)
3303
+ SENSITIVE = [:master_user_name]
3304
+ include Aws::Structure
3305
+ end
3306
+
3307
+ # Describes the SAML application configured for the domain.
3308
+ #
3309
+ # @!attribute [rw] enabled
3310
+ # True if SAML is enabled.
3311
+ # @return [Boolean]
3312
+ #
3313
+ # @!attribute [rw] idp
3314
+ # Describes the SAML Identity Provider's information.
3315
+ # @return [Types::SAMLIdp]
3316
+ #
3317
+ # @!attribute [rw] subject_key
3318
+ # The key used for matching the SAML Subject attribute.
3319
+ # @return [String]
3320
+ #
3321
+ # @!attribute [rw] roles_key
3322
+ # The key used for matching the SAML Roles attribute.
3323
+ # @return [String]
3324
+ #
3325
+ # @!attribute [rw] session_timeout_minutes
3326
+ # The duration, in minutes, after which a user session becomes
3327
+ # inactive.
3328
+ # @return [Integer]
3329
+ #
3330
+ class SAMLOptionsOutput < Struct.new(
3331
+ :enabled,
3332
+ :idp,
3333
+ :subject_key,
3334
+ :roles_key,
3335
+ :session_timeout_minutes)
3336
+ SENSITIVE = []
3337
+ include Aws::Structure
3338
+ end
3339
+
3187
3340
  # The current options of an Elasticsearch domain service software
3188
3341
  # options.
3189
3342
  #
@@ -3465,6 +3618,18 @@ module Aws::ElasticsearchService
3465
3618
  # master_user_name: "Username",
3466
3619
  # master_user_password: "Password",
3467
3620
  # },
3621
+ # saml_options: {
3622
+ # enabled: false,
3623
+ # idp: {
3624
+ # metadata_content: "SAMLMetadata", # required
3625
+ # entity_id: "SAMLEntityId", # required
3626
+ # },
3627
+ # master_user_name: "Username",
3628
+ # master_backend_role: "BackendRole",
3629
+ # subject_key: "String",
3630
+ # roles_key: "String",
3631
+ # session_timeout_minutes: 1,
3632
+ # },
3468
3633
  # },
3469
3634
  # }
3470
3635
  #
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.39.0
4
+ version: 1.44.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: 2020-07-02 00:00:00.000000000 Z
11
+ date: 2020-11-04 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.99.0
22
+ version: 3.109.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.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement