aws-sdk-datazone 1.70.0 → 1.72.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
  SHA256:
3
- metadata.gz: b0cefd0d5db632cfac8604418c54c6b4cca57313e74094d937b1023e69150f8e
4
- data.tar.gz: c23d4c327bf6c0d0b4f64d7d9f4f169ce34a9d3258cd96119a76ec577a75f0a2
3
+ metadata.gz: 6ad8222903cea032f3eb8feed89b1e95cdf09c862011f967f88e9d4c85544fa4
4
+ data.tar.gz: b8639ecca14dfd96452fe14cfcf176a62930a4c49e73fac4b71ff88e5df8f54d
5
5
  SHA512:
6
- metadata.gz: b815d9151e0bb4ba1e3051f41917ac010ce01c89c8f84a37a1a2b0d9457088f8a402d075292c30a7e9154b36533d6b7bcb3a304ef8cc5d66573e70b668c5328e
7
- data.tar.gz: e0f48b991e96e76fa71b8037ae3bdcfb0b8e0dad5fabecaa786c4b1d992cb82e48034c67ad41e860df4251b3f090037afa6481c8dd48b3767b63c0a462e9e7f3
6
+ metadata.gz: fcf9aa89f2af7855c4afc7f537c19a673dfe9556cd47f23c4a1683fa30d625ff87a0f3592fe3bcb5e44e5f0399f63e56f7e1f1e70fcc25f2b5eeedcbcfd86bfb
7
+ data.tar.gz: c80eb19329a79c9d158f83a1ac4acdcfd442f3d60b380ff291efcab7544b360e11850f87be8e33e4e7eb286fa2dddce8316e51623790c93bef527c11f3112126
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.72.0 (2026-04-07)
5
+ ------------------
6
+
7
+ * Feature - Update Configurations and registerS3AccessGrantLocation as public attributes for cfn
8
+
9
+ 1.71.0 (2026-03-31)
10
+ ------------------
11
+
12
+ * Feature - Adds environmentConfigurationName field to CreateEnvironmentInput and UpdateEnvironmentInput, so that Domain Owners can now recover orphaned environments by recreating deleted configurations with the same name, and will auto-recover orphaned environments
13
+
4
14
  1.70.0 (2026-03-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.72.0
@@ -1885,6 +1885,9 @@ module Aws::DataZone
1885
1885
  # **A suitable default value is auto-generated.** You should normally
1886
1886
  # not need to pass this option.**
1887
1887
  #
1888
+ # @option params [Array<Types::Configuration>] :configurations
1889
+ # The configurations of the connection.
1890
+ #
1888
1891
  # @option params [String] :description
1889
1892
  # A connection description.
1890
1893
  #
@@ -1909,6 +1912,7 @@ module Aws::DataZone
1909
1912
  # @return [Types::CreateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1910
1913
  #
1911
1914
  # * {Types::CreateConnectionOutput#connection_id #connection_id} => String
1915
+ # * {Types::CreateConnectionOutput#configurations #configurations} => Array&lt;Types::Configuration&gt;
1912
1916
  # * {Types::CreateConnectionOutput#description #description} => String
1913
1917
  # * {Types::CreateConnectionOutput#domain_id #domain_id} => String
1914
1918
  # * {Types::CreateConnectionOutput#domain_unit_id #domain_unit_id} => String
@@ -1930,6 +1934,14 @@ module Aws::DataZone
1930
1934
  # iam_connection_id: "ConnectionId",
1931
1935
  # },
1932
1936
  # client_token: "String",
1937
+ # configurations: [
1938
+ # {
1939
+ # classification: "ConfigurationClassificationString",
1940
+ # properties: {
1941
+ # "PropertyMapKeyString" => "PropertyMapValueString",
1942
+ # },
1943
+ # },
1944
+ # ],
1933
1945
  # description: "CreateConnectionInputDescriptionString",
1934
1946
  # domain_identifier: "DomainId", # required
1935
1947
  # environment_identifier: "EnvironmentId",
@@ -2042,6 +2054,7 @@ module Aws::DataZone
2042
2054
  # connection: "String",
2043
2055
  # },
2044
2056
  # glue_connection_name: "SparkGluePropertiesInputGlueConnectionNameString",
2057
+ # glue_connection_names: ["GlueConnectionName"],
2045
2058
  # glue_version: "SparkGluePropertiesInputGlueVersionString",
2046
2059
  # idle_timeout: 1,
2047
2060
  # java_virtual_env: "SparkGluePropertiesInputJavaVirtualEnvString",
@@ -2052,6 +2065,7 @@ module Aws::DataZone
2052
2065
  # s3_properties: {
2053
2066
  # s3_uri: "S3Uri", # required
2054
2067
  # s3_access_grant_location_id: "S3AccessGrantLocationId",
2068
+ # register_s3_access_grant_location: false,
2055
2069
  # },
2056
2070
  # amazon_q_properties: {
2057
2071
  # is_enabled: false, # required
@@ -2074,6 +2088,10 @@ module Aws::DataZone
2074
2088
  # @example Response structure
2075
2089
  #
2076
2090
  # resp.connection_id #=> String
2091
+ # resp.configurations #=> Array
2092
+ # resp.configurations[0].classification #=> String
2093
+ # resp.configurations[0].properties #=> Hash
2094
+ # resp.configurations[0].properties["PropertyMapKeyString"] #=> String
2077
2095
  # resp.description #=> String
2078
2096
  # resp.domain_id #=> String
2079
2097
  # resp.domain_unit_id #=> String
@@ -2085,6 +2103,8 @@ module Aws::DataZone
2085
2103
  # resp.physical_endpoints[0].aws_location.aws_region #=> String
2086
2104
  # resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
2087
2105
  # resp.physical_endpoints[0].glue_connection_name #=> String
2106
+ # resp.physical_endpoints[0].glue_connection_names #=> Array
2107
+ # resp.physical_endpoints[0].glue_connection_names[0] #=> String
2088
2108
  # resp.physical_endpoints[0].glue_connection.name #=> String
2089
2109
  # resp.physical_endpoints[0].glue_connection.description #=> String
2090
2110
  # resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
@@ -2173,6 +2193,8 @@ module Aws::DataZone
2173
2193
  # resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
2174
2194
  # resp.props.spark_glue_properties.additional_args.connection #=> String
2175
2195
  # resp.props.spark_glue_properties.glue_connection_name #=> String
2196
+ # resp.props.spark_glue_properties.glue_connection_names #=> Array
2197
+ # resp.props.spark_glue_properties.glue_connection_names[0] #=> String
2176
2198
  # resp.props.spark_glue_properties.glue_version #=> String
2177
2199
  # resp.props.spark_glue_properties.idle_timeout #=> Integer
2178
2200
  # resp.props.spark_glue_properties.java_virtual_env #=> String
@@ -2181,6 +2203,7 @@ module Aws::DataZone
2181
2203
  # resp.props.spark_glue_properties.worker_type #=> String
2182
2204
  # resp.props.s3_properties.s3_uri #=> String
2183
2205
  # resp.props.s3_properties.s3_access_grant_location_id #=> String
2206
+ # resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
2184
2207
  # resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
2185
2208
  # resp.props.s3_properties.error_message #=> String
2186
2209
  # resp.props.amazon_q_properties.is_enabled #=> Boolean
@@ -2889,6 +2912,9 @@ module Aws::DataZone
2889
2912
  # @option params [String] :environment_configuration_id
2890
2913
  # The configuration ID of the environment.
2891
2914
  #
2915
+ # @option params [String] :environment_configuration_name
2916
+ # The configuration name of the environment.
2917
+ #
2892
2918
  # @return [Types::CreateEnvironmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2893
2919
  #
2894
2920
  # * {Types::CreateEnvironmentOutput#project_id #project_id} => String
@@ -2913,6 +2939,7 @@ module Aws::DataZone
2913
2939
  # * {Types::CreateEnvironmentOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
2914
2940
  # * {Types::CreateEnvironmentOutput#environment_blueprint_id #environment_blueprint_id} => String
2915
2941
  # * {Types::CreateEnvironmentOutput#environment_configuration_id #environment_configuration_id} => String
2942
+ # * {Types::CreateEnvironmentOutput#environment_configuration_name #environment_configuration_name} => String
2916
2943
  #
2917
2944
  # @example Request syntax with placeholder values
2918
2945
  #
@@ -2934,6 +2961,7 @@ module Aws::DataZone
2934
2961
  # environment_blueprint_identifier: "String",
2935
2962
  # deployment_order: 1,
2936
2963
  # environment_configuration_id: "String",
2964
+ # environment_configuration_name: "EnvironmentConfigurationName",
2937
2965
  # })
2938
2966
  #
2939
2967
  # @example Response structure
@@ -2985,6 +3013,7 @@ module Aws::DataZone
2985
3013
  # resp.deployment_properties.end_timeout_minutes #=> Integer
2986
3014
  # resp.environment_blueprint_id #=> String
2987
3015
  # resp.environment_configuration_id #=> String
3016
+ # resp.environment_configuration_name #=> String
2988
3017
  #
2989
3018
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironment AWS API Documentation
2990
3019
  #
@@ -5960,6 +5989,7 @@ module Aws::DataZone
5960
5989
  # @return [Types::GetConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5961
5990
  #
5962
5991
  # * {Types::GetConnectionOutput#connection_credentials #connection_credentials} => Types::ConnectionCredentials
5992
+ # * {Types::GetConnectionOutput#configurations #configurations} => Array&lt;Types::Configuration&gt;
5963
5993
  # * {Types::GetConnectionOutput#connection_id #connection_id} => String
5964
5994
  # * {Types::GetConnectionOutput#description #description} => String
5965
5995
  # * {Types::GetConnectionOutput#domain_id #domain_id} => String
@@ -5987,6 +6017,10 @@ module Aws::DataZone
5987
6017
  # resp.connection_credentials.secret_access_key #=> String
5988
6018
  # resp.connection_credentials.session_token #=> String
5989
6019
  # resp.connection_credentials.expiration #=> Time
6020
+ # resp.configurations #=> Array
6021
+ # resp.configurations[0].classification #=> String
6022
+ # resp.configurations[0].properties #=> Hash
6023
+ # resp.configurations[0].properties["PropertyMapKeyString"] #=> String
5990
6024
  # resp.connection_id #=> String
5991
6025
  # resp.description #=> String
5992
6026
  # resp.domain_id #=> String
@@ -6000,6 +6034,8 @@ module Aws::DataZone
6000
6034
  # resp.physical_endpoints[0].aws_location.aws_region #=> String
6001
6035
  # resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
6002
6036
  # resp.physical_endpoints[0].glue_connection_name #=> String
6037
+ # resp.physical_endpoints[0].glue_connection_names #=> Array
6038
+ # resp.physical_endpoints[0].glue_connection_names[0] #=> String
6003
6039
  # resp.physical_endpoints[0].glue_connection.name #=> String
6004
6040
  # resp.physical_endpoints[0].glue_connection.description #=> String
6005
6041
  # resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
@@ -6088,6 +6124,8 @@ module Aws::DataZone
6088
6124
  # resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
6089
6125
  # resp.props.spark_glue_properties.additional_args.connection #=> String
6090
6126
  # resp.props.spark_glue_properties.glue_connection_name #=> String
6127
+ # resp.props.spark_glue_properties.glue_connection_names #=> Array
6128
+ # resp.props.spark_glue_properties.glue_connection_names[0] #=> String
6091
6129
  # resp.props.spark_glue_properties.glue_version #=> String
6092
6130
  # resp.props.spark_glue_properties.idle_timeout #=> Integer
6093
6131
  # resp.props.spark_glue_properties.java_virtual_env #=> String
@@ -6096,6 +6134,7 @@ module Aws::DataZone
6096
6134
  # resp.props.spark_glue_properties.worker_type #=> String
6097
6135
  # resp.props.s3_properties.s3_uri #=> String
6098
6136
  # resp.props.s3_properties.s3_access_grant_location_id #=> String
6137
+ # resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
6099
6138
  # resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
6100
6139
  # resp.props.s3_properties.error_message #=> String
6101
6140
  # resp.props.amazon_q_properties.is_enabled #=> Boolean
@@ -6560,6 +6599,7 @@ module Aws::DataZone
6560
6599
  # * {Types::GetEnvironmentOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
6561
6600
  # * {Types::GetEnvironmentOutput#environment_blueprint_id #environment_blueprint_id} => String
6562
6601
  # * {Types::GetEnvironmentOutput#environment_configuration_id #environment_configuration_id} => String
6602
+ # * {Types::GetEnvironmentOutput#environment_configuration_name #environment_configuration_name} => String
6563
6603
  #
6564
6604
  # @example Request syntax with placeholder values
6565
6605
  #
@@ -6617,6 +6657,7 @@ module Aws::DataZone
6617
6657
  # resp.deployment_properties.end_timeout_minutes #=> Integer
6618
6658
  # resp.environment_blueprint_id #=> String
6619
6659
  # resp.environment_configuration_id #=> String
6660
+ # resp.environment_configuration_name #=> String
6620
6661
  #
6621
6662
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironment AWS API Documentation
6622
6663
  #
@@ -8549,6 +8590,10 @@ module Aws::DataZone
8549
8590
  # @example Response structure
8550
8591
  #
8551
8592
  # resp.items #=> Array
8593
+ # resp.items[0].configurations #=> Array
8594
+ # resp.items[0].configurations[0].classification #=> String
8595
+ # resp.items[0].configurations[0].properties #=> Hash
8596
+ # resp.items[0].configurations[0].properties["PropertyMapKeyString"] #=> String
8552
8597
  # resp.items[0].connection_id #=> String
8553
8598
  # resp.items[0].domain_id #=> String
8554
8599
  # resp.items[0].domain_unit_id #=> String
@@ -8560,6 +8605,8 @@ module Aws::DataZone
8560
8605
  # resp.items[0].physical_endpoints[0].aws_location.aws_region #=> String
8561
8606
  # resp.items[0].physical_endpoints[0].aws_location.iam_connection_id #=> String
8562
8607
  # resp.items[0].physical_endpoints[0].glue_connection_name #=> String
8608
+ # resp.items[0].physical_endpoints[0].glue_connection_names #=> Array
8609
+ # resp.items[0].physical_endpoints[0].glue_connection_names[0] #=> String
8563
8610
  # resp.items[0].physical_endpoints[0].glue_connection.name #=> String
8564
8611
  # resp.items[0].physical_endpoints[0].glue_connection.description #=> String
8565
8612
  # resp.items[0].physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
@@ -8648,6 +8695,8 @@ module Aws::DataZone
8648
8695
  # resp.items[0].props.spark_emr_properties.managed_endpoint_credentials.token #=> String
8649
8696
  # resp.items[0].props.spark_glue_properties.additional_args.connection #=> String
8650
8697
  # resp.items[0].props.spark_glue_properties.glue_connection_name #=> String
8698
+ # resp.items[0].props.spark_glue_properties.glue_connection_names #=> Array
8699
+ # resp.items[0].props.spark_glue_properties.glue_connection_names[0] #=> String
8651
8700
  # resp.items[0].props.spark_glue_properties.glue_version #=> String
8652
8701
  # resp.items[0].props.spark_glue_properties.idle_timeout #=> Integer
8653
8702
  # resp.items[0].props.spark_glue_properties.java_virtual_env #=> String
@@ -8656,6 +8705,7 @@ module Aws::DataZone
8656
8705
  # resp.items[0].props.spark_glue_properties.worker_type #=> String
8657
8706
  # resp.items[0].props.s3_properties.s3_uri #=> String
8658
8707
  # resp.items[0].props.s3_properties.s3_access_grant_location_id #=> String
8708
+ # resp.items[0].props.s3_properties.register_s3_access_grant_location #=> Boolean
8659
8709
  # resp.items[0].props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
8660
8710
  # resp.items[0].props.s3_properties.error_message #=> String
8661
8711
  # resp.items[0].props.amazon_q_properties.is_enabled #=> Boolean
@@ -9520,6 +9570,7 @@ module Aws::DataZone
9520
9570
  # resp.items[0].provider #=> String
9521
9571
  # resp.items[0].status #=> String, one of "ACTIVE", "CREATING", "UPDATING", "DELETING", "CREATE_FAILED", "UPDATE_FAILED", "DELETE_FAILED", "VALIDATION_FAILED", "SUSPENDED", "DISABLED", "EXPIRED", "DELETED", "INACCESSIBLE"
9522
9572
  # resp.items[0].environment_configuration_id #=> String
9573
+ # resp.items[0].environment_configuration_name #=> String
9523
9574
  # resp.next_token #=> String
9524
9575
  #
9525
9576
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironments AWS API Documentation
@@ -13003,6 +13054,9 @@ module Aws::DataZone
13003
13054
  # connect your resources (domains, projects, and environments) to
13004
13055
  # external resources and services.
13005
13056
  #
13057
+ # @option params [Array<Types::Configuration>] :configurations
13058
+ # The configurations of the connection.
13059
+ #
13006
13060
  # @option params [required, String] :domain_identifier
13007
13061
  # The ID of the domain where a connection is to be updated.
13008
13062
  #
@@ -13020,6 +13074,7 @@ module Aws::DataZone
13020
13074
  #
13021
13075
  # @return [Types::UpdateConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13022
13076
  #
13077
+ # * {Types::UpdateConnectionOutput#configurations #configurations} => Array&lt;Types::Configuration&gt;
13023
13078
  # * {Types::UpdateConnectionOutput#connection_id #connection_id} => String
13024
13079
  # * {Types::UpdateConnectionOutput#description #description} => String
13025
13080
  # * {Types::UpdateConnectionOutput#domain_id #domain_id} => String
@@ -13035,6 +13090,14 @@ module Aws::DataZone
13035
13090
  # @example Request syntax with placeholder values
13036
13091
  #
13037
13092
  # resp = client.update_connection({
13093
+ # configurations: [
13094
+ # {
13095
+ # classification: "ConfigurationClassificationString",
13096
+ # properties: {
13097
+ # "PropertyMapKeyString" => "PropertyMapValueString",
13098
+ # },
13099
+ # },
13100
+ # ],
13038
13101
  # domain_identifier: "DomainId", # required
13039
13102
  # identifier: "ConnectionId", # required
13040
13103
  # description: "UpdateConnectionInputDescriptionString",
@@ -13101,6 +13164,7 @@ module Aws::DataZone
13101
13164
  # s3_properties: {
13102
13165
  # s3_uri: "S3Uri", # required
13103
13166
  # s3_access_grant_location_id: "S3AccessGrantLocationId",
13167
+ # register_s3_access_grant_location: false,
13104
13168
  # },
13105
13169
  # amazon_q_properties: {
13106
13170
  # is_enabled: false, # required
@@ -13115,6 +13179,10 @@ module Aws::DataZone
13115
13179
  #
13116
13180
  # @example Response structure
13117
13181
  #
13182
+ # resp.configurations #=> Array
13183
+ # resp.configurations[0].classification #=> String
13184
+ # resp.configurations[0].properties #=> Hash
13185
+ # resp.configurations[0].properties["PropertyMapKeyString"] #=> String
13118
13186
  # resp.connection_id #=> String
13119
13187
  # resp.description #=> String
13120
13188
  # resp.domain_id #=> String
@@ -13127,6 +13195,8 @@ module Aws::DataZone
13127
13195
  # resp.physical_endpoints[0].aws_location.aws_region #=> String
13128
13196
  # resp.physical_endpoints[0].aws_location.iam_connection_id #=> String
13129
13197
  # resp.physical_endpoints[0].glue_connection_name #=> String
13198
+ # resp.physical_endpoints[0].glue_connection_names #=> Array
13199
+ # resp.physical_endpoints[0].glue_connection_names[0] #=> String
13130
13200
  # resp.physical_endpoints[0].glue_connection.name #=> String
13131
13201
  # resp.physical_endpoints[0].glue_connection.description #=> String
13132
13202
  # resp.physical_endpoints[0].glue_connection.connection_type #=> String, one of "ATHENA", "BIGQUERY", "DATABRICKS", "DOCUMENTDB", "DYNAMODB", "HYPERPOD", "IAM", "MYSQL", "OPENSEARCH", "ORACLE", "POSTGRESQL", "REDSHIFT", "S3", "SAPHANA", "SNOWFLAKE", "SPARK", "SQLSERVER", "TERADATA", "VERTICA", "WORKFLOWS_MWAA", "AMAZON_Q", "MLFLOW"
@@ -13215,6 +13285,8 @@ module Aws::DataZone
13215
13285
  # resp.props.spark_emr_properties.managed_endpoint_credentials.token #=> String
13216
13286
  # resp.props.spark_glue_properties.additional_args.connection #=> String
13217
13287
  # resp.props.spark_glue_properties.glue_connection_name #=> String
13288
+ # resp.props.spark_glue_properties.glue_connection_names #=> Array
13289
+ # resp.props.spark_glue_properties.glue_connection_names[0] #=> String
13218
13290
  # resp.props.spark_glue_properties.glue_version #=> String
13219
13291
  # resp.props.spark_glue_properties.idle_timeout #=> Integer
13220
13292
  # resp.props.spark_glue_properties.java_virtual_env #=> String
@@ -13223,6 +13295,7 @@ module Aws::DataZone
13223
13295
  # resp.props.spark_glue_properties.worker_type #=> String
13224
13296
  # resp.props.s3_properties.s3_uri #=> String
13225
13297
  # resp.props.s3_properties.s3_access_grant_location_id #=> String
13298
+ # resp.props.s3_properties.register_s3_access_grant_location #=> Boolean
13226
13299
  # resp.props.s3_properties.status #=> String, one of "CREATING", "CREATE_FAILED", "DELETING", "DELETE_FAILED", "READY", "UPDATING", "UPDATE_FAILED", "DELETED"
13227
13300
  # resp.props.s3_properties.error_message #=> String
13228
13301
  # resp.props.amazon_q_properties.is_enabled #=> Boolean
@@ -13630,6 +13703,9 @@ module Aws::DataZone
13630
13703
  # @option params [Array<Types::EnvironmentParameter>] :user_parameters
13631
13704
  # The user parameters of the environment.
13632
13705
  #
13706
+ # @option params [String] :environment_configuration_name
13707
+ # The configuration name of the environment.
13708
+ #
13633
13709
  # @return [Types::UpdateEnvironmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13634
13710
  #
13635
13711
  # * {Types::UpdateEnvironmentOutput#project_id #project_id} => String
@@ -13654,6 +13730,7 @@ module Aws::DataZone
13654
13730
  # * {Types::UpdateEnvironmentOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
13655
13731
  # * {Types::UpdateEnvironmentOutput#environment_blueprint_id #environment_blueprint_id} => String
13656
13732
  # * {Types::UpdateEnvironmentOutput#environment_configuration_id #environment_configuration_id} => String
13733
+ # * {Types::UpdateEnvironmentOutput#environment_configuration_name #environment_configuration_name} => String
13657
13734
  #
13658
13735
  # @example Request syntax with placeholder values
13659
13736
  #
@@ -13670,6 +13747,7 @@ module Aws::DataZone
13670
13747
  # value: "String",
13671
13748
  # },
13672
13749
  # ],
13750
+ # environment_configuration_name: "EnvironmentConfigurationName",
13673
13751
  # })
13674
13752
  #
13675
13753
  # @example Response structure
@@ -13721,6 +13799,7 @@ module Aws::DataZone
13721
13799
  # resp.deployment_properties.end_timeout_minutes #=> Integer
13722
13800
  # resp.environment_blueprint_id #=> String
13723
13801
  # resp.environment_configuration_id #=> String
13802
+ # resp.environment_configuration_name #=> String
13724
13803
  #
13725
13804
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironment AWS API Documentation
13726
13805
  #
@@ -15027,7 +15106,7 @@ module Aws::DataZone
15027
15106
  tracer: tracer
15028
15107
  )
15029
15108
  context[:gem_name] = 'aws-sdk-datazone'
15030
- context[:gem_version] = '1.70.0'
15109
+ context[:gem_version] = '1.72.0'
15031
15110
  Seahorse::Client::Request.new(handlers, context)
15032
15111
  end
15033
15112
 
@@ -161,7 +161,10 @@ module Aws::DataZone
161
161
  ConfigurableActionParameterList = Shapes::ListShape.new(name: 'ConfigurableActionParameterList')
162
162
  ConfigurableActionTypeAuthorization = Shapes::StringShape.new(name: 'ConfigurableActionTypeAuthorization')
163
163
  ConfigurableEnvironmentAction = Shapes::StructureShape.new(name: 'ConfigurableEnvironmentAction')
164
+ Configuration = Shapes::StructureShape.new(name: 'Configuration')
165
+ ConfigurationClassificationString = Shapes::StringShape.new(name: 'ConfigurationClassificationString')
164
166
  ConfigurationStatus = Shapes::StringShape.new(name: 'ConfigurationStatus')
167
+ Configurations = Shapes::ListShape.new(name: 'Configurations')
165
168
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
166
169
  ConnectionCredentials = Shapes::StructureShape.new(name: 'ConnectionCredentials')
167
170
  ConnectionId = Shapes::StringShape.new(name: 'ConnectionId')
@@ -563,6 +566,8 @@ module Aws::DataZone
563
566
  GlueConnectionInput = Shapes::StructureShape.new(name: 'GlueConnectionInput')
564
567
  GlueConnectionInputMatchCriteriaString = Shapes::StringShape.new(name: 'GlueConnectionInputMatchCriteriaString')
565
568
  GlueConnectionInputNameString = Shapes::StringShape.new(name: 'GlueConnectionInputNameString')
569
+ GlueConnectionName = Shapes::StringShape.new(name: 'GlueConnectionName')
570
+ GlueConnectionNames = Shapes::ListShape.new(name: 'GlueConnectionNames')
566
571
  GlueConnectionPatch = Shapes::StructureShape.new(name: 'GlueConnectionPatch')
567
572
  GlueConnectionStatusReasonString = Shapes::StringShape.new(name: 'GlueConnectionStatusReasonString')
568
573
  GlueConnectionType = Shapes::StringShape.new(name: 'GlueConnectionType')
@@ -1666,6 +1671,12 @@ module Aws::DataZone
1666
1671
  ConfigurableEnvironmentAction.add_member(:parameters, Shapes::ShapeRef.new(shape: ConfigurableActionParameterList, required: true, location_name: "parameters"))
1667
1672
  ConfigurableEnvironmentAction.struct_class = Types::ConfigurableEnvironmentAction
1668
1673
 
1674
+ Configuration.add_member(:classification, Shapes::ShapeRef.new(shape: ConfigurationClassificationString, location_name: "classification"))
1675
+ Configuration.add_member(:properties, Shapes::ShapeRef.new(shape: PropertyMap, location_name: "properties"))
1676
+ Configuration.struct_class = Types::Configuration
1677
+
1678
+ Configurations.member = Shapes::ShapeRef.new(shape: Configuration)
1679
+
1669
1680
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
1670
1681
  ConflictException.struct_class = Types::ConflictException
1671
1682
 
@@ -1756,6 +1767,7 @@ module Aws::DataZone
1756
1767
 
1757
1768
  ConnectionSummaries.member = Shapes::ShapeRef.new(shape: ConnectionSummary)
1758
1769
 
1770
+ ConnectionSummary.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
1759
1771
  ConnectionSummary.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
1760
1772
  ConnectionSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
1761
1773
  ConnectionSummary.add_member(:domain_unit_id, Shapes::ShapeRef.new(shape: DomainUnitId, required: true, location_name: "domainUnitId"))
@@ -1907,6 +1919,7 @@ module Aws::DataZone
1907
1919
 
1908
1920
  CreateConnectionInput.add_member(:aws_location, Shapes::ShapeRef.new(shape: AwsLocation, location_name: "awsLocation"))
1909
1921
  CreateConnectionInput.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1922
+ CreateConnectionInput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
1910
1923
  CreateConnectionInput.add_member(:description, Shapes::ShapeRef.new(shape: CreateConnectionInputDescriptionString, location_name: "description"))
1911
1924
  CreateConnectionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
1912
1925
  CreateConnectionInput.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, location_name: "environmentIdentifier"))
@@ -1917,6 +1930,7 @@ module Aws::DataZone
1917
1930
  CreateConnectionInput.struct_class = Types::CreateConnectionInput
1918
1931
 
1919
1932
  CreateConnectionOutput.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
1933
+ CreateConnectionOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
1920
1934
  CreateConnectionOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
1921
1935
  CreateConnectionOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
1922
1936
  CreateConnectionOutput.add_member(:domain_unit_id, Shapes::ShapeRef.new(shape: DomainUnitId, required: true, location_name: "domainUnitId"))
@@ -2113,6 +2127,7 @@ module Aws::DataZone
2113
2127
  CreateEnvironmentInput.add_member(:environment_blueprint_identifier, Shapes::ShapeRef.new(shape: String, location_name: "environmentBlueprintIdentifier"))
2114
2128
  CreateEnvironmentInput.add_member(:deployment_order, Shapes::ShapeRef.new(shape: Integer, location_name: "deploymentOrder"))
2115
2129
  CreateEnvironmentInput.add_member(:environment_configuration_id, Shapes::ShapeRef.new(shape: String, location_name: "environmentConfigurationId"))
2130
+ CreateEnvironmentInput.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
2116
2131
  CreateEnvironmentInput.struct_class = Types::CreateEnvironmentInput
2117
2132
 
2118
2133
  CreateEnvironmentOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "projectId"))
@@ -2137,6 +2152,7 @@ module Aws::DataZone
2137
2152
  CreateEnvironmentOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
2138
2153
  CreateEnvironmentOutput.add_member(:environment_blueprint_id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, location_name: "environmentBlueprintId"))
2139
2154
  CreateEnvironmentOutput.add_member(:environment_configuration_id, Shapes::ShapeRef.new(shape: EnvironmentConfigurationId, location_name: "environmentConfigurationId"))
2155
+ CreateEnvironmentOutput.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
2140
2156
  CreateEnvironmentOutput.struct_class = Types::CreateEnvironmentOutput
2141
2157
 
2142
2158
  CreateEnvironmentProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
@@ -3024,6 +3040,7 @@ module Aws::DataZone
3024
3040
  EnvironmentSummary.add_member(:provider, Shapes::ShapeRef.new(shape: String, required: true, location_name: "provider"))
3025
3041
  EnvironmentSummary.add_member(:status, Shapes::ShapeRef.new(shape: EnvironmentStatus, location_name: "status"))
3026
3042
  EnvironmentSummary.add_member(:environment_configuration_id, Shapes::ShapeRef.new(shape: EnvironmentConfigurationId, location_name: "environmentConfigurationId"))
3043
+ EnvironmentSummary.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
3027
3044
  EnvironmentSummary.struct_class = Types::EnvironmentSummary
3028
3045
 
3029
3046
  EqualToExpression.add_member(:column_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "columnName"))
@@ -3205,6 +3222,7 @@ module Aws::DataZone
3205
3222
  GetConnectionInput.struct_class = Types::GetConnectionInput
3206
3223
 
3207
3224
  GetConnectionOutput.add_member(:connection_credentials, Shapes::ShapeRef.new(shape: ConnectionCredentials, location_name: "connectionCredentials"))
3225
+ GetConnectionOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
3208
3226
  GetConnectionOutput.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
3209
3227
  GetConnectionOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
3210
3228
  GetConnectionOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
@@ -3417,6 +3435,7 @@ module Aws::DataZone
3417
3435
  GetEnvironmentOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
3418
3436
  GetEnvironmentOutput.add_member(:environment_blueprint_id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, location_name: "environmentBlueprintId"))
3419
3437
  GetEnvironmentOutput.add_member(:environment_configuration_id, Shapes::ShapeRef.new(shape: EnvironmentConfigurationId, location_name: "environmentConfigurationId"))
3438
+ GetEnvironmentOutput.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
3420
3439
  GetEnvironmentOutput.struct_class = Types::GetEnvironmentOutput
3421
3440
 
3422
3441
  GetEnvironmentProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
@@ -3850,6 +3869,8 @@ module Aws::DataZone
3850
3869
  GlueConnectionInput.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationInput, location_name: "authenticationConfiguration"))
3851
3870
  GlueConnectionInput.struct_class = Types::GlueConnectionInput
3852
3871
 
3872
+ GlueConnectionNames.member = Shapes::ShapeRef.new(shape: GlueConnectionName)
3873
+
3853
3874
  GlueConnectionPatch.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
3854
3875
  GlueConnectionPatch.add_member(:connection_properties, Shapes::ShapeRef.new(shape: ConnectionProperties, location_name: "connectionProperties"))
3855
3876
  GlueConnectionPatch.add_member(:authentication_configuration, Shapes::ShapeRef.new(shape: AuthenticationConfigurationPatch, location_name: "authenticationConfiguration"))
@@ -4752,6 +4773,7 @@ module Aws::DataZone
4752
4773
 
4753
4774
  PhysicalEndpoint.add_member(:aws_location, Shapes::ShapeRef.new(shape: AwsLocation, location_name: "awsLocation"))
4754
4775
  PhysicalEndpoint.add_member(:glue_connection_name, Shapes::ShapeRef.new(shape: String, location_name: "glueConnectionName"))
4776
+ PhysicalEndpoint.add_member(:glue_connection_names, Shapes::ShapeRef.new(shape: GlueConnectionNames, location_name: "glueConnectionNames"))
4755
4777
  PhysicalEndpoint.add_member(:glue_connection, Shapes::ShapeRef.new(shape: GlueConnection, location_name: "glueConnection"))
4756
4778
  PhysicalEndpoint.add_member(:enable_trusted_identity_propagation, Shapes::ShapeRef.new(shape: Boolean, location_name: "enableTrustedIdentityPropagation"))
4757
4779
  PhysicalEndpoint.add_member(:host, Shapes::ShapeRef.new(shape: String, location_name: "host"))
@@ -5289,16 +5311,19 @@ module Aws::DataZone
5289
5311
 
5290
5312
  S3PropertiesInput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "s3Uri"))
5291
5313
  S3PropertiesInput.add_member(:s3_access_grant_location_id, Shapes::ShapeRef.new(shape: S3AccessGrantLocationId, location_name: "s3AccessGrantLocationId"))
5314
+ S3PropertiesInput.add_member(:register_s3_access_grant_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "registerS3AccessGrantLocation"))
5292
5315
  S3PropertiesInput.struct_class = Types::S3PropertiesInput
5293
5316
 
5294
5317
  S3PropertiesOutput.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "s3Uri"))
5295
5318
  S3PropertiesOutput.add_member(:s3_access_grant_location_id, Shapes::ShapeRef.new(shape: S3AccessGrantLocationId, location_name: "s3AccessGrantLocationId"))
5319
+ S3PropertiesOutput.add_member(:register_s3_access_grant_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "registerS3AccessGrantLocation"))
5296
5320
  S3PropertiesOutput.add_member(:status, Shapes::ShapeRef.new(shape: ConnectionStatus, location_name: "status"))
5297
5321
  S3PropertiesOutput.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "errorMessage"))
5298
5322
  S3PropertiesOutput.struct_class = Types::S3PropertiesOutput
5299
5323
 
5300
5324
  S3PropertiesPatch.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "s3Uri"))
5301
5325
  S3PropertiesPatch.add_member(:s3_access_grant_location_id, Shapes::ShapeRef.new(shape: S3AccessGrantLocationId, location_name: "s3AccessGrantLocationId"))
5326
+ S3PropertiesPatch.add_member(:register_s3_access_grant_location, Shapes::ShapeRef.new(shape: Boolean, location_name: "registerS3AccessGrantLocation"))
5302
5327
  S3PropertiesPatch.struct_class = Types::S3PropertiesPatch
5303
5328
 
5304
5329
  SageMakerRunConfigurationInput.add_member(:tracking_assets, Shapes::ShapeRef.new(shape: TrackingAssets, required: true, location_name: "trackingAssets"))
@@ -5499,6 +5524,7 @@ module Aws::DataZone
5499
5524
 
5500
5525
  SparkGluePropertiesInput.add_member(:additional_args, Shapes::ShapeRef.new(shape: SparkGlueArgs, location_name: "additionalArgs"))
5501
5526
  SparkGluePropertiesInput.add_member(:glue_connection_name, Shapes::ShapeRef.new(shape: SparkGluePropertiesInputGlueConnectionNameString, location_name: "glueConnectionName"))
5527
+ SparkGluePropertiesInput.add_member(:glue_connection_names, Shapes::ShapeRef.new(shape: GlueConnectionNames, location_name: "glueConnectionNames"))
5502
5528
  SparkGluePropertiesInput.add_member(:glue_version, Shapes::ShapeRef.new(shape: SparkGluePropertiesInputGlueVersionString, location_name: "glueVersion"))
5503
5529
  SparkGluePropertiesInput.add_member(:idle_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "idleTimeout"))
5504
5530
  SparkGluePropertiesInput.add_member(:java_virtual_env, Shapes::ShapeRef.new(shape: SparkGluePropertiesInputJavaVirtualEnvString, location_name: "javaVirtualEnv"))
@@ -5509,6 +5535,7 @@ module Aws::DataZone
5509
5535
 
5510
5536
  SparkGluePropertiesOutput.add_member(:additional_args, Shapes::ShapeRef.new(shape: SparkGlueArgs, location_name: "additionalArgs"))
5511
5537
  SparkGluePropertiesOutput.add_member(:glue_connection_name, Shapes::ShapeRef.new(shape: String, location_name: "glueConnectionName"))
5538
+ SparkGluePropertiesOutput.add_member(:glue_connection_names, Shapes::ShapeRef.new(shape: GlueConnectionNames, location_name: "glueConnectionNames"))
5512
5539
  SparkGluePropertiesOutput.add_member(:glue_version, Shapes::ShapeRef.new(shape: String, location_name: "glueVersion"))
5513
5540
  SparkGluePropertiesOutput.add_member(:idle_timeout, Shapes::ShapeRef.new(shape: Integer, location_name: "idleTimeout"))
5514
5541
  SparkGluePropertiesOutput.add_member(:java_virtual_env, Shapes::ShapeRef.new(shape: String, location_name: "javaVirtualEnv"))
@@ -5872,6 +5899,7 @@ module Aws::DataZone
5872
5899
  UpdateAssetFilterOutput.add_member(:effective_row_filter, Shapes::ShapeRef.new(shape: String, location_name: "effectiveRowFilter"))
5873
5900
  UpdateAssetFilterOutput.struct_class = Types::UpdateAssetFilterOutput
5874
5901
 
5902
+ UpdateConnectionInput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
5875
5903
  UpdateConnectionInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
5876
5904
  UpdateConnectionInput.add_member(:identifier, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location: "uri", location_name: "identifier"))
5877
5905
  UpdateConnectionInput.add_member(:description, Shapes::ShapeRef.new(shape: UpdateConnectionInputDescriptionString, location_name: "description"))
@@ -5879,6 +5907,7 @@ module Aws::DataZone
5879
5907
  UpdateConnectionInput.add_member(:props, Shapes::ShapeRef.new(shape: ConnectionPropertiesPatch, location_name: "props"))
5880
5908
  UpdateConnectionInput.struct_class = Types::UpdateConnectionInput
5881
5909
 
5910
+ UpdateConnectionOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
5882
5911
  UpdateConnectionOutput.add_member(:connection_id, Shapes::ShapeRef.new(shape: ConnectionId, required: true, location_name: "connectionId"))
5883
5912
  UpdateConnectionOutput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
5884
5913
  UpdateConnectionOutput.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
@@ -6009,6 +6038,7 @@ module Aws::DataZone
6009
6038
  UpdateEnvironmentInput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
6010
6039
  UpdateEnvironmentInput.add_member(:blueprint_version, Shapes::ShapeRef.new(shape: String, location_name: "blueprintVersion"))
6011
6040
  UpdateEnvironmentInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: EnvironmentParametersList, location_name: "userParameters"))
6041
+ UpdateEnvironmentInput.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
6012
6042
  UpdateEnvironmentInput.struct_class = Types::UpdateEnvironmentInput
6013
6043
 
6014
6044
  UpdateEnvironmentOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "projectId"))
@@ -6033,6 +6063,7 @@ module Aws::DataZone
6033
6063
  UpdateEnvironmentOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
6034
6064
  UpdateEnvironmentOutput.add_member(:environment_blueprint_id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, location_name: "environmentBlueprintId"))
6035
6065
  UpdateEnvironmentOutput.add_member(:environment_configuration_id, Shapes::ShapeRef.new(shape: EnvironmentConfigurationId, location_name: "environmentConfigurationId"))
6066
+ UpdateEnvironmentOutput.add_member(:environment_configuration_name, Shapes::ShapeRef.new(shape: EnvironmentConfigurationName, location_name: "environmentConfigurationName"))
6036
6067
  UpdateEnvironmentOutput.struct_class = Types::UpdateEnvironmentOutput
6037
6068
 
6038
6069
  UpdateEnvironmentProfileInput.add_member(:domain_identifier, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainIdentifier"))
@@ -1975,6 +1975,25 @@ module Aws::DataZone
1975
1975
  include Aws::Structure
1976
1976
  end
1977
1977
 
1978
+ # The configuration of a connection.
1979
+ #
1980
+ # @!attribute [rw] classification
1981
+ # The classification of the connection configuration.
1982
+ # @return [String]
1983
+ #
1984
+ # @!attribute [rw] properties
1985
+ # The properties of the connection configuration.
1986
+ # @return [Hash<String,String>]
1987
+ #
1988
+ # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/Configuration AWS API Documentation
1989
+ #
1990
+ class Configuration < Struct.new(
1991
+ :classification,
1992
+ :properties)
1993
+ SENSITIVE = []
1994
+ include Aws::Structure
1995
+ end
1996
+
1978
1997
  # There is a conflict while performing this action.
1979
1998
  #
1980
1999
  # @!attribute [rw] message
@@ -2257,6 +2276,10 @@ module Aws::DataZone
2257
2276
 
2258
2277
  # The summary of a connection.
2259
2278
  #
2279
+ # @!attribute [rw] configurations
2280
+ # The configurations of a connection summary.
2281
+ # @return [Array<Types::Configuration>]
2282
+ #
2260
2283
  # @!attribute [rw] connection_id
2261
2284
  # The ID of a connection.
2262
2285
  # @return [String]
@@ -2300,6 +2323,7 @@ module Aws::DataZone
2300
2323
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ConnectionSummary AWS API Documentation
2301
2324
  #
2302
2325
  class ConnectionSummary < Struct.new(
2326
+ :configurations,
2303
2327
  :connection_id,
2304
2328
  :domain_id,
2305
2329
  :domain_unit_id,
@@ -3001,6 +3025,10 @@ module Aws::DataZone
3001
3025
  # not need to pass this option.
3002
3026
  # @return [String]
3003
3027
  #
3028
+ # @!attribute [rw] configurations
3029
+ # The configurations of the connection.
3030
+ # @return [Array<Types::Configuration>]
3031
+ #
3004
3032
  # @!attribute [rw] description
3005
3033
  # A connection description.
3006
3034
  # @return [String]
@@ -3034,6 +3062,7 @@ module Aws::DataZone
3034
3062
  class CreateConnectionInput < Struct.new(
3035
3063
  :aws_location,
3036
3064
  :client_token,
3065
+ :configurations,
3037
3066
  :description,
3038
3067
  :domain_identifier,
3039
3068
  :environment_identifier,
@@ -3049,6 +3078,10 @@ module Aws::DataZone
3049
3078
  # The ID of the connection.
3050
3079
  # @return [String]
3051
3080
  #
3081
+ # @!attribute [rw] configurations
3082
+ # The configurations of the connection.
3083
+ # @return [Array<Types::Configuration>]
3084
+ #
3052
3085
  # @!attribute [rw] description
3053
3086
  # The connection description.
3054
3087
  # @return [String]
@@ -3093,6 +3126,7 @@ module Aws::DataZone
3093
3126
  #
3094
3127
  class CreateConnectionOutput < Struct.new(
3095
3128
  :connection_id,
3129
+ :configurations,
3096
3130
  :description,
3097
3131
  :domain_id,
3098
3132
  :domain_unit_id,
@@ -4029,6 +4063,10 @@ module Aws::DataZone
4029
4063
  # The configuration ID of the environment.
4030
4064
  # @return [String]
4031
4065
  #
4066
+ # @!attribute [rw] environment_configuration_name
4067
+ # The configuration name of the environment.
4068
+ # @return [String]
4069
+ #
4032
4070
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentInput AWS API Documentation
4033
4071
  #
4034
4072
  class CreateEnvironmentInput < Struct.new(
@@ -4043,8 +4081,9 @@ module Aws::DataZone
4043
4081
  :environment_account_region,
4044
4082
  :environment_blueprint_identifier,
4045
4083
  :deployment_order,
4046
- :environment_configuration_id)
4047
- SENSITIVE = []
4084
+ :environment_configuration_id,
4085
+ :environment_configuration_name)
4086
+ SENSITIVE = [:environment_configuration_name]
4048
4087
  include Aws::Structure
4049
4088
  end
4050
4089
 
@@ -4144,6 +4183,10 @@ module Aws::DataZone
4144
4183
  # The configuration ID of the environment.
4145
4184
  # @return [String]
4146
4185
  #
4186
+ # @!attribute [rw] environment_configuration_name
4187
+ # The configuration name of the environment.
4188
+ # @return [String]
4189
+ #
4147
4190
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentOutput AWS API Documentation
4148
4191
  #
4149
4192
  class CreateEnvironmentOutput < Struct.new(
@@ -4168,8 +4211,9 @@ module Aws::DataZone
4168
4211
  :provisioning_properties,
4169
4212
  :deployment_properties,
4170
4213
  :environment_blueprint_id,
4171
- :environment_configuration_id)
4172
- SENSITIVE = [:name, :description, :environment_configuration_id]
4214
+ :environment_configuration_id,
4215
+ :environment_configuration_name)
4216
+ SENSITIVE = [:name, :description, :environment_configuration_id, :environment_configuration_name]
4173
4217
  include Aws::Structure
4174
4218
  end
4175
4219
 
@@ -8076,6 +8120,10 @@ module Aws::DataZone
8076
8120
  # The configuration ID with which the environment is created.
8077
8121
  # @return [String]
8078
8122
  #
8123
+ # @!attribute [rw] environment_configuration_name
8124
+ # The configuration name with which the environment is created.
8125
+ # @return [String]
8126
+ #
8079
8127
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentSummary AWS API Documentation
8080
8128
  #
8081
8129
  class EnvironmentSummary < Struct.new(
@@ -8092,8 +8140,9 @@ module Aws::DataZone
8092
8140
  :aws_account_region,
8093
8141
  :provider,
8094
8142
  :status,
8095
- :environment_configuration_id)
8096
- SENSITIVE = [:name, :description, :environment_configuration_id]
8143
+ :environment_configuration_id,
8144
+ :environment_configuration_name)
8145
+ SENSITIVE = [:name, :description, :environment_configuration_id, :environment_configuration_name]
8097
8146
  include Aws::Structure
8098
8147
  end
8099
8148
 
@@ -8828,6 +8877,10 @@ module Aws::DataZone
8828
8877
  # Connection credentials.
8829
8878
  # @return [Types::ConnectionCredentials]
8830
8879
  #
8880
+ # @!attribute [rw] configurations
8881
+ # The configurations of the connection.
8882
+ # @return [Array<Types::Configuration>]
8883
+ #
8831
8884
  # @!attribute [rw] connection_id
8832
8885
  # The ID of the connection.
8833
8886
  # @return [String]
@@ -8880,6 +8933,7 @@ module Aws::DataZone
8880
8933
  #
8881
8934
  class GetConnectionOutput < Struct.new(
8882
8935
  :connection_credentials,
8936
+ :configurations,
8883
8937
  :connection_id,
8884
8938
  :description,
8885
8939
  :domain_id,
@@ -9827,6 +9881,10 @@ module Aws::DataZone
9827
9881
  # The configuration ID that is used to create the environment.
9828
9882
  # @return [String]
9829
9883
  #
9884
+ # @!attribute [rw] environment_configuration_name
9885
+ # The configuration name that is used to create the environment.
9886
+ # @return [String]
9887
+ #
9830
9888
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetEnvironmentOutput AWS API Documentation
9831
9889
  #
9832
9890
  class GetEnvironmentOutput < Struct.new(
@@ -9851,8 +9909,9 @@ module Aws::DataZone
9851
9909
  :provisioning_properties,
9852
9910
  :deployment_properties,
9853
9911
  :environment_blueprint_id,
9854
- :environment_configuration_id)
9855
- SENSITIVE = [:name, :description, :environment_configuration_id]
9912
+ :environment_configuration_id,
9913
+ :environment_configuration_name)
9914
+ SENSITIVE = [:name, :description, :environment_configuration_id, :environment_configuration_name]
9856
9915
  include Aws::Structure
9857
9916
  end
9858
9917
 
@@ -16285,6 +16344,11 @@ module Aws::DataZone
16285
16344
  # The Amazon Web Services Glue connection name.
16286
16345
  # @return [String]
16287
16346
  #
16347
+ # @!attribute [rw] glue_connection_names
16348
+ # The Amazon Web Services Glue connection names in the physical
16349
+ # endpoint.
16350
+ # @return [Array<String>]
16351
+ #
16288
16352
  # @!attribute [rw] glue_connection
16289
16353
  # The Amazon Web Services Glue connection.
16290
16354
  # @return [Types::GlueConnection]
@@ -16315,6 +16379,7 @@ module Aws::DataZone
16315
16379
  class PhysicalEndpoint < Struct.new(
16316
16380
  :aws_location,
16317
16381
  :glue_connection_name,
16382
+ :glue_connection_names,
16318
16383
  :glue_connection,
16319
16384
  :enable_trusted_identity_propagation,
16320
16385
  :host,
@@ -18448,11 +18513,16 @@ module Aws::DataZone
18448
18513
  # properties of a connection.
18449
18514
  # @return [String]
18450
18515
  #
18516
+ # @!attribute [rw] register_s3_access_grant_location
18517
+ # Specifies whether to register the Amazon S3 Access Grant location.
18518
+ # @return [Boolean]
18519
+ #
18451
18520
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/S3PropertiesInput AWS API Documentation
18452
18521
  #
18453
18522
  class S3PropertiesInput < Struct.new(
18454
18523
  :s3_uri,
18455
- :s3_access_grant_location_id)
18524
+ :s3_access_grant_location_id,
18525
+ :register_s3_access_grant_location)
18456
18526
  SENSITIVE = []
18457
18527
  include Aws::Structure
18458
18528
  end
@@ -18469,6 +18539,10 @@ module Aws::DataZone
18469
18539
  # properties of a connection.
18470
18540
  # @return [String]
18471
18541
  #
18542
+ # @!attribute [rw] register_s3_access_grant_location
18543
+ # Specifies whether to register the Amazon S3 Access Grant location.
18544
+ # @return [Boolean]
18545
+ #
18472
18546
  # @!attribute [rw] status
18473
18547
  # The status of the Amazon S3 connection.
18474
18548
  # @return [String]
@@ -18482,6 +18556,7 @@ module Aws::DataZone
18482
18556
  class S3PropertiesOutput < Struct.new(
18483
18557
  :s3_uri,
18484
18558
  :s3_access_grant_location_id,
18559
+ :register_s3_access_grant_location,
18485
18560
  :status,
18486
18561
  :error_message)
18487
18562
  SENSITIVE = []
@@ -18500,11 +18575,16 @@ module Aws::DataZone
18500
18575
  # properties patch of a connection.
18501
18576
  # @return [String]
18502
18577
  #
18578
+ # @!attribute [rw] register_s3_access_grant_location
18579
+ # Specifies whether to register the Amazon S3 Access Grant location.
18580
+ # @return [Boolean]
18581
+ #
18503
18582
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/S3PropertiesPatch AWS API Documentation
18504
18583
  #
18505
18584
  class S3PropertiesPatch < Struct.new(
18506
18585
  :s3_uri,
18507
- :s3_access_grant_location_id)
18586
+ :s3_access_grant_location_id,
18587
+ :register_s3_access_grant_location)
18508
18588
  SENSITIVE = []
18509
18589
  include Aws::Structure
18510
18590
  end
@@ -19398,9 +19478,16 @@ module Aws::DataZone
19398
19478
  #
19399
19479
  # @!attribute [rw] glue_connection_name
19400
19480
  # The Amazon Web Services Glue connection name in the Spark Amazon Web
19401
- # Services Glue properties.
19481
+ # Services Glue properties. Specify either `glueConnectionName` or
19482
+ # `glueConnectionNames`, but not both.
19402
19483
  # @return [String]
19403
19484
  #
19485
+ # @!attribute [rw] glue_connection_names
19486
+ # The Amazon Web Services Glue connection names in the Spark Amazon
19487
+ # Web Services Glue properties. Specify either `glueConnectionName` or
19488
+ # `glueConnectionNames`, but not both.
19489
+ # @return [Array<String>]
19490
+ #
19404
19491
  # @!attribute [rw] glue_version
19405
19492
  # The Amazon Web Services Glue version in the Spark Amazon Web
19406
19493
  # Services Glue properties.
@@ -19434,6 +19521,7 @@ module Aws::DataZone
19434
19521
  class SparkGluePropertiesInput < Struct.new(
19435
19522
  :additional_args,
19436
19523
  :glue_connection_name,
19524
+ :glue_connection_names,
19437
19525
  :glue_version,
19438
19526
  :idle_timeout,
19439
19527
  :java_virtual_env,
@@ -19456,6 +19544,11 @@ module Aws::DataZone
19456
19544
  # Services Glue properties.
19457
19545
  # @return [String]
19458
19546
  #
19547
+ # @!attribute [rw] glue_connection_names
19548
+ # The Amazon Web Services Glue connection names in the Spark Amazon
19549
+ # Web Services Glue properties.
19550
+ # @return [Array<String>]
19551
+ #
19459
19552
  # @!attribute [rw] glue_version
19460
19553
  # The Amazon Web Services Glue version in the Spark Amazon Web
19461
19554
  # Services Glue properties.
@@ -19489,6 +19582,7 @@ module Aws::DataZone
19489
19582
  class SparkGluePropertiesOutput < Struct.new(
19490
19583
  :additional_args,
19491
19584
  :glue_connection_name,
19585
+ :glue_connection_names,
19492
19586
  :glue_version,
19493
19587
  :idle_timeout,
19494
19588
  :java_virtual_env,
@@ -20951,6 +21045,10 @@ module Aws::DataZone
20951
21045
  include Aws::Structure
20952
21046
  end
20953
21047
 
21048
+ # @!attribute [rw] configurations
21049
+ # The configurations of the connection.
21050
+ # @return [Array<Types::Configuration>]
21051
+ #
20954
21052
  # @!attribute [rw] domain_identifier
20955
21053
  # The ID of the domain where a connection is to be updated.
20956
21054
  # @return [String]
@@ -20974,6 +21072,7 @@ module Aws::DataZone
20974
21072
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnectionInput AWS API Documentation
20975
21073
  #
20976
21074
  class UpdateConnectionInput < Struct.new(
21075
+ :configurations,
20977
21076
  :domain_identifier,
20978
21077
  :identifier,
20979
21078
  :description,
@@ -20983,6 +21082,10 @@ module Aws::DataZone
20983
21082
  include Aws::Structure
20984
21083
  end
20985
21084
 
21085
+ # @!attribute [rw] configurations
21086
+ # The configurations of the connection.
21087
+ # @return [Array<Types::Configuration>]
21088
+ #
20986
21089
  # @!attribute [rw] connection_id
20987
21090
  # The ID of the connection.
20988
21091
  # @return [String]
@@ -21030,6 +21133,7 @@ module Aws::DataZone
21030
21133
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateConnectionOutput AWS API Documentation
21031
21134
  #
21032
21135
  class UpdateConnectionOutput < Struct.new(
21136
+ :configurations,
21033
21137
  :connection_id,
21034
21138
  :description,
21035
21139
  :domain_id,
@@ -21633,6 +21737,10 @@ module Aws::DataZone
21633
21737
  # The user parameters of the environment.
21634
21738
  # @return [Array<Types::EnvironmentParameter>]
21635
21739
  #
21740
+ # @!attribute [rw] environment_configuration_name
21741
+ # The configuration name of the environment.
21742
+ # @return [String]
21743
+ #
21636
21744
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentInput AWS API Documentation
21637
21745
  #
21638
21746
  class UpdateEnvironmentInput < Struct.new(
@@ -21642,8 +21750,9 @@ module Aws::DataZone
21642
21750
  :description,
21643
21751
  :glossary_terms,
21644
21752
  :blueprint_version,
21645
- :user_parameters)
21646
- SENSITIVE = []
21753
+ :user_parameters,
21754
+ :environment_configuration_name)
21755
+ SENSITIVE = [:environment_configuration_name]
21647
21756
  include Aws::Structure
21648
21757
  end
21649
21758
 
@@ -21744,6 +21853,10 @@ module Aws::DataZone
21744
21853
  # The configuration ID of the environment.
21745
21854
  # @return [String]
21746
21855
  #
21856
+ # @!attribute [rw] environment_configuration_name
21857
+ # The configuration name of the environment.
21858
+ # @return [String]
21859
+ #
21747
21860
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentOutput AWS API Documentation
21748
21861
  #
21749
21862
  class UpdateEnvironmentOutput < Struct.new(
@@ -21768,8 +21881,9 @@ module Aws::DataZone
21768
21881
  :provisioning_properties,
21769
21882
  :deployment_properties,
21770
21883
  :environment_blueprint_id,
21771
- :environment_configuration_id)
21772
- SENSITIVE = [:name, :description, :environment_configuration_id]
21884
+ :environment_configuration_id,
21885
+ :environment_configuration_name)
21886
+ SENSITIVE = [:name, :description, :environment_configuration_id, :environment_configuration_name]
21773
21887
  include Aws::Structure
21774
21888
  end
21775
21889
 
@@ -55,7 +55,7 @@ module Aws::DataZone
55
55
  autoload :EndpointProvider, 'aws-sdk-datazone/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-datazone/endpoints'
57
57
 
58
- GEM_VERSION = '1.70.0'
58
+ GEM_VERSION = '1.72.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -597,6 +597,7 @@ module Aws
597
597
  interface _CreateConnectionResponseSuccess
598
598
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionOutput]
599
599
  def connection_id: () -> ::String
600
+ def configurations: () -> ::Array[Types::Configuration]
600
601
  def description: () -> ::String
601
602
  def domain_id: () -> ::String
602
603
  def domain_unit_id: () -> ::String
@@ -617,6 +618,12 @@ module Aws
617
618
  iam_connection_id: ::String?
618
619
  },
619
620
  ?client_token: ::String,
621
+ ?configurations: Array[
622
+ {
623
+ classification: ::String?,
624
+ properties: Hash[::String, ::String]?
625
+ },
626
+ ],
620
627
  ?description: ::String,
621
628
  domain_identifier: ::String,
622
629
  ?environment_identifier: ::String,
@@ -717,6 +724,7 @@ module Aws
717
724
  connection: ::String?
718
725
  }?,
719
726
  glue_connection_name: ::String?,
727
+ glue_connection_names: Array[::String]?,
720
728
  glue_version: ::String?,
721
729
  idle_timeout: ::Integer?,
722
730
  java_virtual_env: ::String?,
@@ -726,7 +734,8 @@ module Aws
726
734
  }?,
727
735
  s3_properties: {
728
736
  s3_uri: ::String,
729
- s3_access_grant_location_id: ::String?
737
+ s3_access_grant_location_id: ::String?,
738
+ register_s3_access_grant_location: bool?
730
739
  }?,
731
740
  amazon_q_properties: {
732
741
  is_enabled: bool,
@@ -1017,6 +1026,7 @@ module Aws
1017
1026
  def deployment_properties: () -> Types::DeploymentProperties
1018
1027
  def environment_blueprint_id: () -> ::String
1019
1028
  def environment_configuration_id: () -> ::String
1029
+ def environment_configuration_name: () -> ::String
1020
1030
  end
1021
1031
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#create_environment-instance_method
1022
1032
  def create_environment: (
@@ -1036,7 +1046,8 @@ module Aws
1036
1046
  ?environment_account_region: ::String,
1037
1047
  ?environment_blueprint_identifier: ::String,
1038
1048
  ?deployment_order: ::Integer,
1039
- ?environment_configuration_id: ::String
1049
+ ?environment_configuration_id: ::String,
1050
+ ?environment_configuration_name: ::String
1040
1051
  ) -> _CreateEnvironmentResponseSuccess
1041
1052
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentResponseSuccess
1042
1053
 
@@ -2006,6 +2017,7 @@ module Aws
2006
2017
  interface _GetConnectionResponseSuccess
2007
2018
  include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionOutput]
2008
2019
  def connection_credentials: () -> Types::ConnectionCredentials
2020
+ def configurations: () -> ::Array[Types::Configuration]
2009
2021
  def connection_id: () -> ::String
2010
2022
  def description: () -> ::String
2011
2023
  def domain_id: () -> ::String
@@ -2192,6 +2204,7 @@ module Aws
2192
2204
  def deployment_properties: () -> Types::DeploymentProperties
2193
2205
  def environment_blueprint_id: () -> ::String
2194
2206
  def environment_configuration_id: () -> ::String
2207
+ def environment_configuration_name: () -> ::String
2195
2208
  end
2196
2209
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#get_environment-instance_method
2197
2210
  def get_environment: (
@@ -3858,6 +3871,7 @@ module Aws
3858
3871
 
3859
3872
  interface _UpdateConnectionResponseSuccess
3860
3873
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionOutput]
3874
+ def configurations: () -> ::Array[Types::Configuration]
3861
3875
  def connection_id: () -> ::String
3862
3876
  def description: () -> ::String
3863
3877
  def domain_id: () -> ::String
@@ -3872,6 +3886,12 @@ module Aws
3872
3886
  end
3873
3887
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_connection-instance_method
3874
3888
  def update_connection: (
3889
+ ?configurations: Array[
3890
+ {
3891
+ classification: ::String?,
3892
+ properties: Hash[::String, ::String]?
3893
+ },
3894
+ ],
3875
3895
  domain_identifier: ::String,
3876
3896
  identifier: ::String,
3877
3897
  ?description: ::String,
@@ -3935,7 +3955,8 @@ module Aws
3935
3955
  }?,
3936
3956
  s3_properties: {
3937
3957
  s3_uri: ::String,
3938
- s3_access_grant_location_id: ::String?
3958
+ s3_access_grant_location_id: ::String?,
3959
+ register_s3_access_grant_location: bool?
3939
3960
  }?,
3940
3961
  amazon_q_properties: {
3941
3962
  is_enabled: bool,
@@ -4123,6 +4144,7 @@ module Aws
4123
4144
  def deployment_properties: () -> Types::DeploymentProperties
4124
4145
  def environment_blueprint_id: () -> ::String
4125
4146
  def environment_configuration_id: () -> ::String
4147
+ def environment_configuration_name: () -> ::String
4126
4148
  end
4127
4149
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataZone/Client.html#update_environment-instance_method
4128
4150
  def update_environment: (
@@ -4137,7 +4159,8 @@ module Aws
4137
4159
  name: ::String?,
4138
4160
  value: ::String?
4139
4161
  },
4140
- ]
4162
+ ],
4163
+ ?environment_configuration_name: ::String
4141
4164
  ) -> _UpdateEnvironmentResponseSuccess
4142
4165
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentResponseSuccess
4143
4166
 
data/sig/types.rbs CHANGED
@@ -571,6 +571,12 @@ module Aws::DataZone
571
571
  SENSITIVE: []
572
572
  end
573
573
 
574
+ class Configuration
575
+ attr_accessor classification: ::String
576
+ attr_accessor properties: ::Hash[::String, ::String]
577
+ SENSITIVE: []
578
+ end
579
+
574
580
  class ConflictException
575
581
  attr_accessor message: ::String
576
582
  SENSITIVE: []
@@ -705,6 +711,7 @@ module Aws::DataZone
705
711
  end
706
712
 
707
713
  class ConnectionSummary
714
+ attr_accessor configurations: ::Array[Types::Configuration]
708
715
  attr_accessor connection_id: ::String
709
716
  attr_accessor domain_id: ::String
710
717
  attr_accessor domain_unit_id: ::String
@@ -876,6 +883,7 @@ module Aws::DataZone
876
883
  class CreateConnectionInput
877
884
  attr_accessor aws_location: Types::AwsLocation
878
885
  attr_accessor client_token: ::String
886
+ attr_accessor configurations: ::Array[Types::Configuration]
879
887
  attr_accessor description: ::String
880
888
  attr_accessor domain_identifier: ::String
881
889
  attr_accessor environment_identifier: ::String
@@ -888,6 +896,7 @@ module Aws::DataZone
888
896
 
889
897
  class CreateConnectionOutput
890
898
  attr_accessor connection_id: ::String
899
+ attr_accessor configurations: ::Array[Types::Configuration]
891
900
  attr_accessor description: ::String
892
901
  attr_accessor domain_id: ::String
893
902
  attr_accessor domain_unit_id: ::String
@@ -1116,7 +1125,8 @@ module Aws::DataZone
1116
1125
  attr_accessor environment_blueprint_identifier: ::String
1117
1126
  attr_accessor deployment_order: ::Integer
1118
1127
  attr_accessor environment_configuration_id: ::String
1119
- SENSITIVE: []
1128
+ attr_accessor environment_configuration_name: ::String
1129
+ SENSITIVE: [:environment_configuration_name]
1120
1130
  end
1121
1131
 
1122
1132
  class CreateEnvironmentOutput
@@ -1142,7 +1152,8 @@ module Aws::DataZone
1142
1152
  attr_accessor deployment_properties: Types::DeploymentProperties
1143
1153
  attr_accessor environment_blueprint_id: ::String
1144
1154
  attr_accessor environment_configuration_id: ::String
1145
- SENSITIVE: [:name, :description, :environment_configuration_id]
1155
+ attr_accessor environment_configuration_name: ::String
1156
+ SENSITIVE: [:name, :description, :environment_configuration_id, :environment_configuration_name]
1146
1157
  end
1147
1158
 
1148
1159
  class CreateEnvironmentProfileInput
@@ -2218,7 +2229,8 @@ module Aws::DataZone
2218
2229
  attr_accessor provider: ::String
2219
2230
  attr_accessor status: ("ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED" | "DELETE_FAILED" | "VALIDATION_FAILED" | "SUSPENDED" | "DISABLED" | "EXPIRED" | "DELETED" | "INACCESSIBLE")
2220
2231
  attr_accessor environment_configuration_id: ::String
2221
- SENSITIVE: [:name, :description, :environment_configuration_id]
2232
+ attr_accessor environment_configuration_name: ::String
2233
+ SENSITIVE: [:name, :description, :environment_configuration_id, :environment_configuration_name]
2222
2234
  end
2223
2235
 
2224
2236
  class EqualToExpression
@@ -2425,6 +2437,7 @@ module Aws::DataZone
2425
2437
 
2426
2438
  class GetConnectionOutput
2427
2439
  attr_accessor connection_credentials: Types::ConnectionCredentials
2440
+ attr_accessor configurations: ::Array[Types::Configuration]
2428
2441
  attr_accessor connection_id: ::String
2429
2442
  attr_accessor description: ::String
2430
2443
  attr_accessor domain_id: ::String
@@ -2681,7 +2694,8 @@ module Aws::DataZone
2681
2694
  attr_accessor deployment_properties: Types::DeploymentProperties
2682
2695
  attr_accessor environment_blueprint_id: ::String
2683
2696
  attr_accessor environment_configuration_id: ::String
2684
- SENSITIVE: [:name, :description, :environment_configuration_id]
2697
+ attr_accessor environment_configuration_name: ::String
2698
+ SENSITIVE: [:name, :description, :environment_configuration_id, :environment_configuration_name]
2685
2699
  end
2686
2700
 
2687
2701
  class GetEnvironmentProfileInput
@@ -4387,6 +4401,7 @@ module Aws::DataZone
4387
4401
  class PhysicalEndpoint
4388
4402
  attr_accessor aws_location: Types::AwsLocation
4389
4403
  attr_accessor glue_connection_name: ::String
4404
+ attr_accessor glue_connection_names: ::Array[::String]
4390
4405
  attr_accessor glue_connection: Types::GlueConnection
4391
4406
  attr_accessor enable_trusted_identity_propagation: bool
4392
4407
  attr_accessor host: ::String
@@ -5072,12 +5087,14 @@ module Aws::DataZone
5072
5087
  class S3PropertiesInput
5073
5088
  attr_accessor s3_uri: ::String
5074
5089
  attr_accessor s3_access_grant_location_id: ::String
5090
+ attr_accessor register_s3_access_grant_location: bool
5075
5091
  SENSITIVE: []
5076
5092
  end
5077
5093
 
5078
5094
  class S3PropertiesOutput
5079
5095
  attr_accessor s3_uri: ::String
5080
5096
  attr_accessor s3_access_grant_location_id: ::String
5097
+ attr_accessor register_s3_access_grant_location: bool
5081
5098
  attr_accessor status: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "READY" | "UPDATING" | "UPDATE_FAILED" | "DELETED")
5082
5099
  attr_accessor error_message: ::String
5083
5100
  SENSITIVE: []
@@ -5086,6 +5103,7 @@ module Aws::DataZone
5086
5103
  class S3PropertiesPatch
5087
5104
  attr_accessor s3_uri: ::String
5088
5105
  attr_accessor s3_access_grant_location_id: ::String
5106
+ attr_accessor register_s3_access_grant_location: bool
5089
5107
  SENSITIVE: []
5090
5108
  end
5091
5109
 
@@ -5345,6 +5363,7 @@ module Aws::DataZone
5345
5363
  class SparkGluePropertiesInput
5346
5364
  attr_accessor additional_args: Types::SparkGlueArgs
5347
5365
  attr_accessor glue_connection_name: ::String
5366
+ attr_accessor glue_connection_names: ::Array[::String]
5348
5367
  attr_accessor glue_version: ::String
5349
5368
  attr_accessor idle_timeout: ::Integer
5350
5369
  attr_accessor java_virtual_env: ::String
@@ -5357,6 +5376,7 @@ module Aws::DataZone
5357
5376
  class SparkGluePropertiesOutput
5358
5377
  attr_accessor additional_args: Types::SparkGlueArgs
5359
5378
  attr_accessor glue_connection_name: ::String
5379
+ attr_accessor glue_connection_names: ::Array[::String]
5360
5380
  attr_accessor glue_version: ::String
5361
5381
  attr_accessor idle_timeout: ::Integer
5362
5382
  attr_accessor java_virtual_env: ::String
@@ -5772,6 +5792,7 @@ module Aws::DataZone
5772
5792
  end
5773
5793
 
5774
5794
  class UpdateConnectionInput
5795
+ attr_accessor configurations: ::Array[Types::Configuration]
5775
5796
  attr_accessor domain_identifier: ::String
5776
5797
  attr_accessor identifier: ::String
5777
5798
  attr_accessor description: ::String
@@ -5781,6 +5802,7 @@ module Aws::DataZone
5781
5802
  end
5782
5803
 
5783
5804
  class UpdateConnectionOutput
5805
+ attr_accessor configurations: ::Array[Types::Configuration]
5784
5806
  attr_accessor connection_id: ::String
5785
5807
  attr_accessor description: ::String
5786
5808
  attr_accessor domain_id: ::String
@@ -5933,7 +5955,8 @@ module Aws::DataZone
5933
5955
  attr_accessor glossary_terms: ::Array[::String]
5934
5956
  attr_accessor blueprint_version: ::String
5935
5957
  attr_accessor user_parameters: ::Array[Types::EnvironmentParameter]
5936
- SENSITIVE: []
5958
+ attr_accessor environment_configuration_name: ::String
5959
+ SENSITIVE: [:environment_configuration_name]
5937
5960
  end
5938
5961
 
5939
5962
  class UpdateEnvironmentOutput
@@ -5959,7 +5982,8 @@ module Aws::DataZone
5959
5982
  attr_accessor deployment_properties: Types::DeploymentProperties
5960
5983
  attr_accessor environment_blueprint_id: ::String
5961
5984
  attr_accessor environment_configuration_id: ::String
5962
- SENSITIVE: [:name, :description, :environment_configuration_id]
5985
+ attr_accessor environment_configuration_name: ::String
5986
+ SENSITIVE: [:name, :description, :environment_configuration_id, :environment_configuration_name]
5963
5987
  end
5964
5988
 
5965
5989
  class UpdateEnvironmentProfileInput
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datazone
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.70.0
4
+ version: 1.72.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services