aws-sdk-datazone 1.91.0 → 1.92.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: 26c0b12628411ddbedda60d1b1c58eafc3bc6a3ad08001819f5d136f38ddf54e
4
- data.tar.gz: d9d771c9912738a75a01106ba8a6b4e5d6d9a4ba36ba2dc127c5c3b92a401968
3
+ metadata.gz: 5002f00a3dee6f28a0b19e78371282d34537ff7ec5257e636ee5f6a0fc2bde26
4
+ data.tar.gz: c6cb04d9a8925b5518a372fe836c4a7e53bed38f87fbdb81e1db1d0d9a6edab6
5
5
  SHA512:
6
- metadata.gz: 3d2791010ae153df2e53bc917c099ce3a68f1bff66c5d0002ff971714014417c7308215dc8ed255d1adcaebc1ae0dfef345d0c0e335b0380c817a1236100f1f6
7
- data.tar.gz: ce541ffc17c6fb862c6a8de1aa16755a9e5816a55c33f9f0e5341179b65e2f6c0c38481447df1f5a503ebd4cc91a2d71de45aeb1904424f6743a66a8f35c6b7d
6
+ metadata.gz: 391a5b4a4d716890d107adb61683373b3b93d27819a2cff6d0ea5aecb1c7014db0f3df437b8618e3ff4cbf8c1e4e1872c07cd0df2161f0b4d3bd2b9fc357a289
7
+ data.tar.gz: cefd18c27acf2fd12ee59d38cbc4cb680c1ffc22498054c54908b6b94210599324020e80c393b01c8b91b3ac1172a0b28d56a9b941d0708f2fe034cb04e745ad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2026-09-24)
5
+ ------------------
6
+
7
+ * Feature - Amazon DataZone now supports the TOOLING blueprint category on CreateEnvironmentBlueprint, UpdateEnvironmentBlueprint, GetEnvironmentBlueprint, and ListEnvironmentBlueprints, for custom tooling blueprints. CreateConnection now accepts roleArn in iamProperties.
8
+
4
9
  1.91.0 (2026-09-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.91.0
1
+ 1.92.0
@@ -2020,6 +2020,7 @@ module Aws::DataZone
2020
2020
  # },
2021
2021
  # iam_properties: {
2022
2022
  # glue_lineage_sync_enabled: false,
2023
+ # role_arn: "RoleArn",
2023
2024
  # },
2024
2025
  # redshift_properties: {
2025
2026
  # storage: {
@@ -3215,6 +3216,11 @@ module Aws::DataZone
3215
3216
  # @option params [Array<Types::CustomParameter>] :user_parameters
3216
3217
  # The user parameters of this Amazon DataZone blueprint.
3217
3218
  #
3219
+ # @option params [String] :blueprint_category
3220
+ # The category of the Amazon DataZone blueprint. The only valid value is
3221
+ # `TOOLING`, which creates a blueprint that provisions the tooling
3222
+ # resources of a project.
3223
+ #
3218
3224
  # @return [Types::CreateEnvironmentBlueprintOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3219
3225
  #
3220
3226
  # * {Types::CreateEnvironmentBlueprintOutput#id #id} => String
@@ -3225,6 +3231,7 @@ module Aws::DataZone
3225
3231
  # * {Types::CreateEnvironmentBlueprintOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
3226
3232
  # * {Types::CreateEnvironmentBlueprintOutput#user_parameters #user_parameters} => Array&lt;Types::CustomParameter&gt;
3227
3233
  # * {Types::CreateEnvironmentBlueprintOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
3234
+ # * {Types::CreateEnvironmentBlueprintOutput#blueprint_category #blueprint_category} => String
3228
3235
  # * {Types::CreateEnvironmentBlueprintOutput#created_at #created_at} => Time
3229
3236
  # * {Types::CreateEnvironmentBlueprintOutput#updated_at #updated_at} => Time
3230
3237
  #
@@ -3250,6 +3257,7 @@ module Aws::DataZone
3250
3257
  # is_update_supported: false,
3251
3258
  # },
3252
3259
  # ],
3260
+ # blueprint_category: "TOOLING", # accepts TOOLING
3253
3261
  # })
3254
3262
  #
3255
3263
  # @example Response structure
@@ -3271,6 +3279,7 @@ module Aws::DataZone
3271
3279
  # resp.user_parameters[0].is_update_supported #=> Boolean
3272
3280
  # resp.glossary_terms #=> Array
3273
3281
  # resp.glossary_terms[0] #=> String
3282
+ # resp.blueprint_category #=> String, one of "TOOLING"
3274
3283
  # resp.created_at #=> Time
3275
3284
  # resp.updated_at #=> Time
3276
3285
  #
@@ -7129,6 +7138,7 @@ module Aws::DataZone
7129
7138
  # * {Types::GetEnvironmentBlueprintOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
7130
7139
  # * {Types::GetEnvironmentBlueprintOutput#user_parameters #user_parameters} => Array&lt;Types::CustomParameter&gt;
7131
7140
  # * {Types::GetEnvironmentBlueprintOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
7141
+ # * {Types::GetEnvironmentBlueprintOutput#blueprint_category #blueprint_category} => String
7132
7142
  # * {Types::GetEnvironmentBlueprintOutput#created_at #created_at} => Time
7133
7143
  # * {Types::GetEnvironmentBlueprintOutput#updated_at #updated_at} => Time
7134
7144
  #
@@ -7158,6 +7168,7 @@ module Aws::DataZone
7158
7168
  # resp.user_parameters[0].is_update_supported #=> Boolean
7159
7169
  # resp.glossary_terms #=> Array
7160
7170
  # resp.glossary_terms[0] #=> String
7171
+ # resp.blueprint_category #=> String, one of "TOOLING"
7161
7172
  # resp.created_at #=> Time
7162
7173
  # resp.updated_at #=> Time
7163
7174
  #
@@ -10079,6 +10090,7 @@ module Aws::DataZone
10079
10090
  # resp.items[0].provisioning_properties.cloud_formation.template_url #=> String
10080
10091
  # resp.items[0].created_at #=> Time
10081
10092
  # resp.items[0].updated_at #=> Time
10093
+ # resp.items[0].blueprint_category #=> String, one of "TOOLING"
10082
10094
  # resp.next_token #=> String
10083
10095
  #
10084
10096
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/ListEnvironmentBlueprints AWS API Documentation
@@ -15306,6 +15318,9 @@ module Aws::DataZone
15306
15318
  # The user parameters to be updated as part of the
15307
15319
  # `UpdateEnvironmentBlueprint` action.
15308
15320
  #
15321
+ # @option params [String] :blueprint_category
15322
+ # The category to update. The only valid value is `TOOLING`.
15323
+ #
15309
15324
  # @return [Types::UpdateEnvironmentBlueprintOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15310
15325
  #
15311
15326
  # * {Types::UpdateEnvironmentBlueprintOutput#id #id} => String
@@ -15316,6 +15331,7 @@ module Aws::DataZone
15316
15331
  # * {Types::UpdateEnvironmentBlueprintOutput#deployment_properties #deployment_properties} => Types::DeploymentProperties
15317
15332
  # * {Types::UpdateEnvironmentBlueprintOutput#user_parameters #user_parameters} => Array&lt;Types::CustomParameter&gt;
15318
15333
  # * {Types::UpdateEnvironmentBlueprintOutput#glossary_terms #glossary_terms} => Array&lt;String&gt;
15334
+ # * {Types::UpdateEnvironmentBlueprintOutput#blueprint_category #blueprint_category} => String
15319
15335
  # * {Types::UpdateEnvironmentBlueprintOutput#created_at #created_at} => Time
15320
15336
  # * {Types::UpdateEnvironmentBlueprintOutput#updated_at #updated_at} => Time
15321
15337
  #
@@ -15341,6 +15357,7 @@ module Aws::DataZone
15341
15357
  # is_update_supported: false,
15342
15358
  # },
15343
15359
  # ],
15360
+ # blueprint_category: "TOOLING", # accepts TOOLING
15344
15361
  # })
15345
15362
  #
15346
15363
  # @example Response structure
@@ -15362,6 +15379,7 @@ module Aws::DataZone
15362
15379
  # resp.user_parameters[0].is_update_supported #=> Boolean
15363
15380
  # resp.glossary_terms #=> Array
15364
15381
  # resp.glossary_terms[0] #=> String
15382
+ # resp.blueprint_category #=> String, one of "TOOLING"
15365
15383
  # resp.created_at #=> Time
15366
15384
  # resp.updated_at #=> Time
15367
15385
  #
@@ -16676,7 +16694,7 @@ module Aws::DataZone
16676
16694
  tracer: tracer
16677
16695
  )
16678
16696
  context[:gem_name] = 'aws-sdk-datazone'
16679
- context[:gem_version] = '1.91.0'
16697
+ context[:gem_version] = '1.92.0'
16680
16698
  Seahorse::Client::Request.new(handlers, context)
16681
16699
  end
16682
16700
 
@@ -144,6 +144,7 @@ module Aws::DataZone
144
144
  BatchPutAttributeOutput = Shapes::StructureShape.new(name: 'BatchPutAttributeOutput')
145
145
  BatchPutAttributesMetadataInput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataInput')
146
146
  BatchPutAttributesMetadataOutput = Shapes::StructureShape.new(name: 'BatchPutAttributesMetadataOutput')
147
+ BlueprintCategory = Shapes::StringShape.new(name: 'BlueprintCategory')
147
148
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
148
149
  BusinessNameGenerationConfiguration = Shapes::StructureShape.new(name: 'BusinessNameGenerationConfiguration')
149
150
  CancelMetadataGenerationRunInput = Shapes::StructureShape.new(name: 'CancelMetadataGenerationRunInput')
@@ -2284,6 +2285,7 @@ module Aws::DataZone
2284
2285
  CreateEnvironmentBlueprintInput.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
2285
2286
  CreateEnvironmentBlueprintInput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
2286
2287
  CreateEnvironmentBlueprintInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
2288
+ CreateEnvironmentBlueprintInput.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
2287
2289
  CreateEnvironmentBlueprintInput.struct_class = Types::CreateEnvironmentBlueprintInput
2288
2290
 
2289
2291
  CreateEnvironmentBlueprintOutput.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location_name: "id"))
@@ -2294,6 +2296,7 @@ module Aws::DataZone
2294
2296
  CreateEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
2295
2297
  CreateEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
2296
2298
  CreateEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
2299
+ CreateEnvironmentBlueprintOutput.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
2297
2300
  CreateEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
2298
2301
  CreateEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
2299
2302
  CreateEnvironmentBlueprintOutput.struct_class = Types::CreateEnvironmentBlueprintOutput
@@ -3194,6 +3197,7 @@ module Aws::DataZone
3194
3197
  EnvironmentBlueprintSummary.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, required: true, location_name: "provisioningProperties"))
3195
3198
  EnvironmentBlueprintSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
3196
3199
  EnvironmentBlueprintSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
3200
+ EnvironmentBlueprintSummary.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
3197
3201
  EnvironmentBlueprintSummary.struct_class = Types::EnvironmentBlueprintSummary
3198
3202
 
3199
3203
  EnvironmentConfig.add_member(:image_version, Shapes::ShapeRef.new(shape: String, location_name: "imageVersion"))
@@ -3654,6 +3658,7 @@ module Aws::DataZone
3654
3658
  GetEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
3655
3659
  GetEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
3656
3660
  GetEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
3661
+ GetEnvironmentBlueprintOutput.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
3657
3662
  GetEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
3658
3663
  GetEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
3659
3664
  GetEnvironmentBlueprintOutput.struct_class = Types::GetEnvironmentBlueprintOutput
@@ -4317,6 +4322,7 @@ module Aws::DataZone
4317
4322
  HyperPodPropertiesOutput.struct_class = Types::HyperPodPropertiesOutput
4318
4323
 
4319
4324
  IamPropertiesInput.add_member(:glue_lineage_sync_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "glueLineageSyncEnabled"))
4325
+ IamPropertiesInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
4320
4326
  IamPropertiesInput.struct_class = Types::IamPropertiesInput
4321
4327
 
4322
4328
  IamPropertiesOutput.add_member(:environment_id, Shapes::ShapeRef.new(shape: String, location_name: "environmentId"))
@@ -6676,6 +6682,7 @@ module Aws::DataZone
6676
6682
  UpdateEnvironmentBlueprintInput.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
6677
6683
  UpdateEnvironmentBlueprintInput.add_member(:provisioning_properties, Shapes::ShapeRef.new(shape: ProvisioningProperties, location_name: "provisioningProperties"))
6678
6684
  UpdateEnvironmentBlueprintInput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
6685
+ UpdateEnvironmentBlueprintInput.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
6679
6686
  UpdateEnvironmentBlueprintInput.struct_class = Types::UpdateEnvironmentBlueprintInput
6680
6687
 
6681
6688
  UpdateEnvironmentBlueprintOutput.add_member(:id, Shapes::ShapeRef.new(shape: EnvironmentBlueprintId, required: true, location_name: "id"))
@@ -6686,6 +6693,7 @@ module Aws::DataZone
6686
6693
  UpdateEnvironmentBlueprintOutput.add_member(:deployment_properties, Shapes::ShapeRef.new(shape: DeploymentProperties, location_name: "deploymentProperties"))
6687
6694
  UpdateEnvironmentBlueprintOutput.add_member(:user_parameters, Shapes::ShapeRef.new(shape: CustomParameterList, location_name: "userParameters"))
6688
6695
  UpdateEnvironmentBlueprintOutput.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
6696
+ UpdateEnvironmentBlueprintOutput.add_member(:blueprint_category, Shapes::ShapeRef.new(shape: BlueprintCategory, location_name: "blueprintCategory"))
6689
6697
  UpdateEnvironmentBlueprintOutput.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "createdAt"))
6690
6698
  UpdateEnvironmentBlueprintOutput.add_member(:updated_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "updatedAt"))
6691
6699
  UpdateEnvironmentBlueprintOutput.struct_class = Types::UpdateEnvironmentBlueprintOutput
@@ -4141,6 +4141,12 @@ module Aws::DataZone
4141
4141
  # The user parameters of this Amazon DataZone blueprint.
4142
4142
  # @return [Array<Types::CustomParameter>]
4143
4143
  #
4144
+ # @!attribute [rw] blueprint_category
4145
+ # The category of the Amazon DataZone blueprint. The only valid value
4146
+ # is `TOOLING`, which creates a blueprint that provisions the tooling
4147
+ # resources of a project.
4148
+ # @return [String]
4149
+ #
4144
4150
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/CreateEnvironmentBlueprintInput AWS API Documentation
4145
4151
  #
4146
4152
  class CreateEnvironmentBlueprintInput < Struct.new(
@@ -4148,7 +4154,8 @@ module Aws::DataZone
4148
4154
  :name,
4149
4155
  :description,
4150
4156
  :provisioning_properties,
4151
- :user_parameters)
4157
+ :user_parameters,
4158
+ :blueprint_category)
4152
4159
  SENSITIVE = [:description]
4153
4160
  include Aws::Structure
4154
4161
  end
@@ -4185,6 +4192,12 @@ module Aws::DataZone
4185
4192
  # The glossary terms attached to this Amazon DataZone blueprint.
4186
4193
  # @return [Array<String>]
4187
4194
  #
4195
+ # @!attribute [rw] blueprint_category
4196
+ # The category of the Amazon DataZone blueprint. The only valid value
4197
+ # is `TOOLING`, which indicates a blueprint that provisions the
4198
+ # tooling resources of a project.
4199
+ # @return [String]
4200
+ #
4188
4201
  # @!attribute [rw] created_at
4189
4202
  # The timestamp at which the environment blueprint was created.
4190
4203
  # @return [Time]
@@ -4204,6 +4217,7 @@ module Aws::DataZone
4204
4217
  :deployment_properties,
4205
4218
  :user_parameters,
4206
4219
  :glossary_terms,
4220
+ :blueprint_category,
4207
4221
  :created_at,
4208
4222
  :updated_at)
4209
4223
  SENSITIVE = [:description]
@@ -8283,6 +8297,11 @@ module Aws::DataZone
8283
8297
  # The timestamp of when the blueprint was enabled.
8284
8298
  # @return [Time]
8285
8299
  #
8300
+ # @!attribute [rw] blueprint_category
8301
+ # The category of the environment blueprint. The only valid value is
8302
+ # `TOOLING`.
8303
+ # @return [String]
8304
+ #
8286
8305
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/EnvironmentBlueprintSummary AWS API Documentation
8287
8306
  #
8288
8307
  class EnvironmentBlueprintSummary < Struct.new(
@@ -8292,7 +8311,8 @@ module Aws::DataZone
8292
8311
  :provider,
8293
8312
  :provisioning_properties,
8294
8313
  :created_at,
8295
- :updated_at)
8314
+ :updated_at,
8315
+ :blueprint_category)
8296
8316
  SENSITIVE = [:description]
8297
8317
  include Aws::Structure
8298
8318
  end
@@ -10294,6 +10314,12 @@ module Aws::DataZone
10294
10314
  # The glossary terms attached to this Amazon DataZone blueprint.
10295
10315
  # @return [Array<String>]
10296
10316
  #
10317
+ # @!attribute [rw] blueprint_category
10318
+ # The category of this Amazon DataZone blueprint. The only valid value
10319
+ # is `TOOLING`, which indicates a blueprint that provisions the
10320
+ # tooling resources of a project.
10321
+ # @return [String]
10322
+ #
10297
10323
  # @!attribute [rw] created_at
10298
10324
  # A timestamp of when this blueprint was created.
10299
10325
  # @return [Time]
@@ -10313,6 +10339,7 @@ module Aws::DataZone
10313
10339
  :deployment_properties,
10314
10340
  :user_parameters,
10315
10341
  :glossary_terms,
10342
+ :blueprint_category,
10316
10343
  :created_at,
10317
10344
  :updated_at)
10318
10345
  SENSITIVE = [:description]
@@ -13425,10 +13452,17 @@ module Aws::DataZone
13425
13452
  # for a connection.
13426
13453
  # @return [Boolean]
13427
13454
  #
13455
+ # @!attribute [rw] role_arn
13456
+ # The ARN of the IAM role to associate with the connection as the
13457
+ # project user role. To use this operation, you must have
13458
+ # `iam:PassRole` permission for this role.
13459
+ # @return [String]
13460
+ #
13428
13461
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/IamPropertiesInput AWS API Documentation
13429
13462
  #
13430
13463
  class IamPropertiesInput < Struct.new(
13431
- :glue_lineage_sync_enabled)
13464
+ :glue_lineage_sync_enabled,
13465
+ :role_arn)
13432
13466
  SENSITIVE = []
13433
13467
  include Aws::Structure
13434
13468
  end
@@ -24132,6 +24166,10 @@ module Aws::DataZone
24132
24166
  # `UpdateEnvironmentBlueprint` action.
24133
24167
  # @return [Array<Types::CustomParameter>]
24134
24168
  #
24169
+ # @!attribute [rw] blueprint_category
24170
+ # The category to update. The only valid value is `TOOLING`.
24171
+ # @return [String]
24172
+ #
24135
24173
  # @see http://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/UpdateEnvironmentBlueprintInput AWS API Documentation
24136
24174
  #
24137
24175
  class UpdateEnvironmentBlueprintInput < Struct.new(
@@ -24139,7 +24177,8 @@ module Aws::DataZone
24139
24177
  :identifier,
24140
24178
  :description,
24141
24179
  :provisioning_properties,
24142
- :user_parameters)
24180
+ :user_parameters,
24181
+ :blueprint_category)
24143
24182
  SENSITIVE = []
24144
24183
  include Aws::Structure
24145
24184
  end
@@ -24182,6 +24221,11 @@ module Aws::DataZone
24182
24221
  # `UpdateEnvironmentBlueprint` action.
24183
24222
  # @return [Array<String>]
24184
24223
  #
24224
+ # @!attribute [rw] blueprint_category
24225
+ # The category of the environment blueprint. The only valid value is
24226
+ # `TOOLING`.
24227
+ # @return [String]
24228
+ #
24185
24229
  # @!attribute [rw] created_at
24186
24230
  # The timestamp of when the environment blueprint was created.
24187
24231
  # @return [Time]
@@ -24201,6 +24245,7 @@ module Aws::DataZone
24201
24245
  :deployment_properties,
24202
24246
  :user_parameters,
24203
24247
  :glossary_terms,
24248
+ :blueprint_category,
24204
24249
  :created_at,
24205
24250
  :updated_at)
24206
24251
  SENSITIVE = [:description]
@@ -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.91.0'
58
+ GEM_VERSION = '1.92.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -548,7 +548,8 @@ module Aws
548
548
  cluster_name: ::String
549
549
  }?,
550
550
  iam_properties: {
551
- glue_lineage_sync_enabled: bool?
551
+ glue_lineage_sync_enabled: bool?,
552
+ role_arn: ::String?
552
553
  }?,
553
554
  redshift_properties: {
554
555
  storage: {
@@ -942,6 +943,7 @@ module Aws
942
943
  def deployment_properties: () -> Types::DeploymentProperties
943
944
  def user_parameters: () -> ::Array[Types::CustomParameter]
944
945
  def glossary_terms: () -> ::Array[::String]
946
+ def blueprint_category: () -> ("TOOLING")
945
947
  def created_at: () -> ::Time
946
948
  def updated_at: () -> ::Time
947
949
  end
@@ -957,7 +959,8 @@ module Aws
957
959
  },
958
960
  ?user_parameters: Array[
959
961
  Params::custom_parameter
960
- ]
962
+ ],
963
+ ?blueprint_category: ("TOOLING")
961
964
  ) -> _CreateEnvironmentBlueprintResponseSuccess
962
965
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEnvironmentBlueprintResponseSuccess
963
966
 
@@ -2099,6 +2102,7 @@ module Aws
2099
2102
  def deployment_properties: () -> Types::DeploymentProperties
2100
2103
  def user_parameters: () -> ::Array[Types::CustomParameter]
2101
2104
  def glossary_terms: () -> ::Array[::String]
2105
+ def blueprint_category: () -> ("TOOLING")
2102
2106
  def created_at: () -> ::Time
2103
2107
  def updated_at: () -> ::Time
2104
2108
  end
@@ -4165,6 +4169,7 @@ module Aws
4165
4169
  def deployment_properties: () -> Types::DeploymentProperties
4166
4170
  def user_parameters: () -> ::Array[Types::CustomParameter]
4167
4171
  def glossary_terms: () -> ::Array[::String]
4172
+ def blueprint_category: () -> ("TOOLING")
4168
4173
  def created_at: () -> ::Time
4169
4174
  def updated_at: () -> ::Time
4170
4175
  end
@@ -4180,7 +4185,8 @@ module Aws
4180
4185
  },
4181
4186
  ?user_parameters: Array[
4182
4187
  Params::custom_parameter
4183
- ]
4188
+ ],
4189
+ ?blueprint_category: ("TOOLING")
4184
4190
  ) -> _UpdateEnvironmentBlueprintResponseSuccess
4185
4191
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEnvironmentBlueprintResponseSuccess
4186
4192
 
data/sig/types.rbs CHANGED
@@ -1162,6 +1162,7 @@ module Aws::DataZone
1162
1162
  attr_accessor description: ::String
1163
1163
  attr_accessor provisioning_properties: Types::ProvisioningProperties
1164
1164
  attr_accessor user_parameters: ::Array[Types::CustomParameter]
1165
+ attr_accessor blueprint_category: ("TOOLING")
1165
1166
  SENSITIVE: [:description]
1166
1167
  end
1167
1168
 
@@ -1174,6 +1175,7 @@ module Aws::DataZone
1174
1175
  attr_accessor deployment_properties: Types::DeploymentProperties
1175
1176
  attr_accessor user_parameters: ::Array[Types::CustomParameter]
1176
1177
  attr_accessor glossary_terms: ::Array[::String]
1178
+ attr_accessor blueprint_category: ("TOOLING")
1177
1179
  attr_accessor created_at: ::Time
1178
1180
  attr_accessor updated_at: ::Time
1179
1181
  SENSITIVE: [:description]
@@ -2277,6 +2279,7 @@ module Aws::DataZone
2277
2279
  attr_accessor provisioning_properties: Types::ProvisioningProperties
2278
2280
  attr_accessor created_at: ::Time
2279
2281
  attr_accessor updated_at: ::Time
2282
+ attr_accessor blueprint_category: ("TOOLING")
2280
2283
  SENSITIVE: [:description]
2281
2284
  end
2282
2285
 
@@ -2804,6 +2807,7 @@ module Aws::DataZone
2804
2807
  attr_accessor deployment_properties: Types::DeploymentProperties
2805
2808
  attr_accessor user_parameters: ::Array[Types::CustomParameter]
2806
2809
  attr_accessor glossary_terms: ::Array[::String]
2810
+ attr_accessor blueprint_category: ("TOOLING")
2807
2811
  attr_accessor created_at: ::Time
2808
2812
  attr_accessor updated_at: ::Time
2809
2813
  SENSITIVE: [:description]
@@ -3615,6 +3619,7 @@ module Aws::DataZone
3615
3619
 
3616
3620
  class IamPropertiesInput
3617
3621
  attr_accessor glue_lineage_sync_enabled: bool
3622
+ attr_accessor role_arn: ::String
3618
3623
  SENSITIVE: []
3619
3624
  end
3620
3625
 
@@ -6569,6 +6574,7 @@ module Aws::DataZone
6569
6574
  attr_accessor description: ::String
6570
6575
  attr_accessor provisioning_properties: Types::ProvisioningProperties
6571
6576
  attr_accessor user_parameters: ::Array[Types::CustomParameter]
6577
+ attr_accessor blueprint_category: ("TOOLING")
6572
6578
  SENSITIVE: []
6573
6579
  end
6574
6580
 
@@ -6581,6 +6587,7 @@ module Aws::DataZone
6581
6587
  attr_accessor deployment_properties: Types::DeploymentProperties
6582
6588
  attr_accessor user_parameters: ::Array[Types::CustomParameter]
6583
6589
  attr_accessor glossary_terms: ::Array[::String]
6590
+ attr_accessor blueprint_category: ("TOOLING")
6584
6591
  attr_accessor created_at: ::Time
6585
6592
  attr_accessor updated_at: ::Time
6586
6593
  SENSITIVE: [:description]
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.91.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services