aws-sdk-nimblestudio 1.11.0 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b01efec76e190c47b2b7d5ee6424131e282ced3da24bf69d30e20186b6e496f
4
- data.tar.gz: 106dc811a10204a38b442950f016dbbc3d7909191f36c1844846dfd6b7d178a1
3
+ metadata.gz: 93badd838654d821ae1302bbc739d8c83c25004f2c81db36237e90e716a0585c
4
+ data.tar.gz: 6aeb7c40455fc698fdb17a1a579e3cb659443ecd39798fc1c1bcddc36258796d
5
5
  SHA512:
6
- metadata.gz: e473b3b10315fbc97d04609c9a474da41a2a3b80528bb777f7854c74eb2f7f1f80d0f675eb55aa91d3d5d5d7295fc0e0df0977e7abdff2e5eec84a9d46fda3e3
7
- data.tar.gz: 4c5a04ce5419744fe1d00a13b4002f303368706e755fb570de61557fc9de1feedf5aae1c21b57a3114cb901499e34767d2275a9acb33c875d08e244da042d16e
6
+ metadata.gz: f8435a403427330f108f0cbaad6a8571a20c2013a407532f81bcac93dccdc35de29c9d42f9f724509a180b5611d87821a00417f9eae43ce0e641fd192785cb2e
7
+ data.tar.gz: cd014ad4dfaef23b04cf9efb764d51f6d8e4f6e3e96222cf9f12aaf16c5cb0e9dfcd1dbf4c8f96e737c2152a49995379f94c195d10764585dc86294fbad0903c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2022-07-14)
5
+ ------------------
6
+
7
+ * Feature - Amazon Nimble Studio adds support for IAM-based access to AWS resources for Nimble Studio components and custom studio components. Studio Component scripts use these roles on Nimble Studio workstation to mount filesystems, access S3 buckets, or other configured resources in the Studio's AWS account
8
+
9
+ 1.13.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.12.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.11.0 (2022-01-13)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.11.0
1
+ 1.14.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::NimbleStudio
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -550,9 +554,9 @@ module Aws::NimbleStudio
550
554
  #
551
555
  # resp = client.create_streaming_image({
552
556
  # client_token: "ClientToken",
553
- # description: "SyntheticCreateStreamingImageRequestStreamingImageDescription",
557
+ # description: "StreamingImageDescription",
554
558
  # ec2_image_id: "EC2ImageId", # required
555
- # name: "SyntheticCreateStreamingImageRequestStreamingImageName", # required
559
+ # name: "StreamingImageName", # required
556
560
  # studio_id: "String", # required
557
561
  # tags: {
558
562
  # "String" => "String",
@@ -798,9 +802,9 @@ module Aws::NimbleStudio
798
802
  # @example Request syntax with placeholder values
799
803
  #
800
804
  # resp = client.create_studio({
801
- # admin_role_arn: "String", # required
805
+ # admin_role_arn: "RoleArn", # required
802
806
  # client_token: "ClientToken",
803
- # display_name: "SyntheticCreateStudioRequestStudioDisplayName", # required
807
+ # display_name: "StudioDisplayName", # required
804
808
  # studio_encryption_configuration: {
805
809
  # key_arn: "StudioEncryptionConfigurationKeyArn",
806
810
  # key_type: "AWS_OWNED_KEY", # required, accepts AWS_OWNED_KEY, CUSTOMER_MANAGED_KEY
@@ -809,7 +813,7 @@ module Aws::NimbleStudio
809
813
  # tags: {
810
814
  # "String" => "String",
811
815
  # },
812
- # user_role_arn: "String", # required
816
+ # user_role_arn: "RoleArn", # required
813
817
  # })
814
818
  #
815
819
  # @example Response structure
@@ -868,9 +872,19 @@ module Aws::NimbleStudio
868
872
  # @option params [required, String] :name
869
873
  # The name for the studio component.
870
874
  #
875
+ # @option params [String] :runtime_role_arn
876
+ # An IAM role attached to a Studio Component that gives the studio
877
+ # component access to AWS resources at anytime while the instance is
878
+ # running.
879
+ #
871
880
  # @option params [Array<Types::ScriptParameterKeyValue>] :script_parameters
872
881
  # Parameters for the studio component scripts.
873
882
  #
883
+ # @option params [String] :secure_initialization_role_arn
884
+ # An IAM role attached to Studio Component when the system
885
+ # initialization script runs which give the studio component access to
886
+ # AWS resources when the system initialization script runs.
887
+ #
874
888
  # @option params [required, String] :studio_id
875
889
  # The studio ID.
876
890
  #
@@ -905,16 +919,16 @@ module Aws::NimbleStudio
905
919
  # },
906
920
  # compute_farm_configuration: {
907
921
  # active_directory_user: "String",
908
- # endpoint: "SyntheticComputeFarmConfigurationString",
922
+ # endpoint: "SensitiveString",
909
923
  # },
910
924
  # license_service_configuration: {
911
- # endpoint: "SyntheticLicenseServiceConfigurationString",
925
+ # endpoint: "SensitiveString",
912
926
  # },
913
927
  # shared_file_system_configuration: {
914
- # endpoint: "SyntheticSharedFileSystemConfigurationString",
928
+ # endpoint: "SensitiveString",
915
929
  # file_system_id: "String",
916
930
  # linux_mount_point: "LinuxMountPoint",
917
- # share_name: "SyntheticSharedFileSystemConfigurationString",
931
+ # share_name: "SensitiveString",
918
932
  # windows_mount_drive: "WindowsMountDrive",
919
933
  # },
920
934
  # },
@@ -929,12 +943,14 @@ module Aws::NimbleStudio
929
943
  # },
930
944
  # ],
931
945
  # name: "StudioComponentName", # required
946
+ # runtime_role_arn: "RoleArn",
932
947
  # script_parameters: [
933
948
  # {
934
949
  # key: "ScriptParameterKey",
935
950
  # value: "ScriptParameterValue",
936
951
  # },
937
952
  # ],
953
+ # secure_initialization_role_arn: "RoleArn",
938
954
  # studio_id: "String", # required
939
955
  # subtype: "AWS_MANAGED_MICROSOFT_AD", # accepts AWS_MANAGED_MICROSOFT_AD, AMAZON_FSX_FOR_WINDOWS, AMAZON_FSX_FOR_LUSTRE, CUSTOM
940
956
  # tags: {
@@ -970,9 +986,11 @@ module Aws::NimbleStudio
970
986
  # resp.studio_component.initialization_scripts[0].run_context #=> String, one of "SYSTEM_INITIALIZATION", "USER_INITIALIZATION"
971
987
  # resp.studio_component.initialization_scripts[0].script #=> String
972
988
  # resp.studio_component.name #=> String
989
+ # resp.studio_component.runtime_role_arn #=> String
973
990
  # resp.studio_component.script_parameters #=> Array
974
991
  # resp.studio_component.script_parameters[0].key #=> String
975
992
  # resp.studio_component.script_parameters[0].value #=> String
993
+ # resp.studio_component.secure_initialization_role_arn #=> String
976
994
  # resp.studio_component.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "UPDATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "DELETE_FAILED", "CREATE_FAILED", "UPDATE_FAILED"
977
995
  # resp.studio_component.status_code #=> String, one of "ACTIVE_DIRECTORY_ALREADY_EXISTS", "STUDIO_COMPONENT_CREATED", "STUDIO_COMPONENT_UPDATED", "STUDIO_COMPONENT_DELETED", "ENCRYPTION_KEY_ACCESS_DENIED", "ENCRYPTION_KEY_NOT_FOUND", "STUDIO_COMPONENT_CREATE_IN_PROGRESS", "STUDIO_COMPONENT_UPDATE_IN_PROGRESS", "STUDIO_COMPONENT_DELETE_IN_PROGRESS", "INTERNAL_ERROR"
978
996
  # resp.studio_component.status_message #=> String
@@ -1346,9 +1364,11 @@ module Aws::NimbleStudio
1346
1364
  # resp.studio_component.initialization_scripts[0].run_context #=> String, one of "SYSTEM_INITIALIZATION", "USER_INITIALIZATION"
1347
1365
  # resp.studio_component.initialization_scripts[0].script #=> String
1348
1366
  # resp.studio_component.name #=> String
1367
+ # resp.studio_component.runtime_role_arn #=> String
1349
1368
  # resp.studio_component.script_parameters #=> Array
1350
1369
  # resp.studio_component.script_parameters[0].key #=> String
1351
1370
  # resp.studio_component.script_parameters[0].value #=> String
1371
+ # resp.studio_component.secure_initialization_role_arn #=> String
1352
1372
  # resp.studio_component.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "UPDATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "DELETE_FAILED", "CREATE_FAILED", "UPDATE_FAILED"
1353
1373
  # resp.studio_component.status_code #=> String, one of "ACTIVE_DIRECTORY_ALREADY_EXISTS", "STUDIO_COMPONENT_CREATED", "STUDIO_COMPONENT_UPDATED", "STUDIO_COMPONENT_DELETED", "ENCRYPTION_KEY_ACCESS_DENIED", "ENCRYPTION_KEY_NOT_FOUND", "STUDIO_COMPONENT_CREATE_IN_PROGRESS", "STUDIO_COMPONENT_UPDATE_IN_PROGRESS", "STUDIO_COMPONENT_DELETE_IN_PROGRESS", "INTERNAL_ERROR"
1354
1374
  # resp.studio_component.status_message #=> String
@@ -1661,11 +1681,15 @@ module Aws::NimbleStudio
1661
1681
  # resp.launch_profile_initialization.name #=> String
1662
1682
  # resp.launch_profile_initialization.platform #=> String, one of "LINUX", "WINDOWS"
1663
1683
  # resp.launch_profile_initialization.system_initialization_scripts #=> Array
1684
+ # resp.launch_profile_initialization.system_initialization_scripts[0].runtime_role_arn #=> String
1664
1685
  # resp.launch_profile_initialization.system_initialization_scripts[0].script #=> String
1686
+ # resp.launch_profile_initialization.system_initialization_scripts[0].secure_initialization_role_arn #=> String
1665
1687
  # resp.launch_profile_initialization.system_initialization_scripts[0].studio_component_id #=> String
1666
1688
  # resp.launch_profile_initialization.system_initialization_scripts[0].studio_component_name #=> String
1667
1689
  # resp.launch_profile_initialization.user_initialization_scripts #=> Array
1690
+ # resp.launch_profile_initialization.user_initialization_scripts[0].runtime_role_arn #=> String
1668
1691
  # resp.launch_profile_initialization.user_initialization_scripts[0].script #=> String
1692
+ # resp.launch_profile_initialization.user_initialization_scripts[0].secure_initialization_role_arn #=> String
1669
1693
  # resp.launch_profile_initialization.user_initialization_scripts[0].studio_component_id #=> String
1670
1694
  # resp.launch_profile_initialization.user_initialization_scripts[0].studio_component_name #=> String
1671
1695
  #
@@ -1985,9 +2009,11 @@ module Aws::NimbleStudio
1985
2009
  # resp.studio_component.initialization_scripts[0].run_context #=> String, one of "SYSTEM_INITIALIZATION", "USER_INITIALIZATION"
1986
2010
  # resp.studio_component.initialization_scripts[0].script #=> String
1987
2011
  # resp.studio_component.name #=> String
2012
+ # resp.studio_component.runtime_role_arn #=> String
1988
2013
  # resp.studio_component.script_parameters #=> Array
1989
2014
  # resp.studio_component.script_parameters[0].key #=> String
1990
2015
  # resp.studio_component.script_parameters[0].value #=> String
2016
+ # resp.studio_component.secure_initialization_role_arn #=> String
1991
2017
  # resp.studio_component.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "UPDATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "DELETE_FAILED", "CREATE_FAILED", "UPDATE_FAILED"
1992
2018
  # resp.studio_component.status_code #=> String, one of "ACTIVE_DIRECTORY_ALREADY_EXISTS", "STUDIO_COMPONENT_CREATED", "STUDIO_COMPONENT_UPDATED", "STUDIO_COMPONENT_DELETED", "ENCRYPTION_KEY_ACCESS_DENIED", "ENCRYPTION_KEY_NOT_FOUND", "STUDIO_COMPONENT_CREATE_IN_PROGRESS", "STUDIO_COMPONENT_UPDATE_IN_PROGRESS", "STUDIO_COMPONENT_DELETE_IN_PROGRESS", "INTERNAL_ERROR"
1993
2019
  # resp.studio_component.status_message #=> String
@@ -2327,7 +2353,7 @@ module Aws::NimbleStudio
2327
2353
  req.send_request(options)
2328
2354
  end
2329
2355
 
2330
- # Lists the streaming image resources in a studio.
2356
+ # Lists the streaming sessions in a studio.
2331
2357
  #
2332
2358
  # @option params [String] :created_by
2333
2359
  # Filters the request to streaming sessions created by the given user.
@@ -2461,9 +2487,11 @@ module Aws::NimbleStudio
2461
2487
  # resp.studio_components[0].initialization_scripts[0].run_context #=> String, one of "SYSTEM_INITIALIZATION", "USER_INITIALIZATION"
2462
2488
  # resp.studio_components[0].initialization_scripts[0].script #=> String
2463
2489
  # resp.studio_components[0].name #=> String
2490
+ # resp.studio_components[0].runtime_role_arn #=> String
2464
2491
  # resp.studio_components[0].script_parameters #=> Array
2465
2492
  # resp.studio_components[0].script_parameters[0].key #=> String
2466
2493
  # resp.studio_components[0].script_parameters[0].value #=> String
2494
+ # resp.studio_components[0].secure_initialization_role_arn #=> String
2467
2495
  # resp.studio_components[0].state #=> String, one of "CREATE_IN_PROGRESS", "READY", "UPDATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "DELETE_FAILED", "CREATE_FAILED", "UPDATE_FAILED"
2468
2496
  # resp.studio_components[0].status_code #=> String, one of "ACTIVE_DIRECTORY_ALREADY_EXISTS", "STUDIO_COMPONENT_CREATED", "STUDIO_COMPONENT_UPDATED", "STUDIO_COMPONENT_DELETED", "ENCRYPTION_KEY_ACCESS_DENIED", "ENCRYPTION_KEY_NOT_FOUND", "STUDIO_COMPONENT_CREATE_IN_PROGRESS", "STUDIO_COMPONENT_UPDATE_IN_PROGRESS", "STUDIO_COMPONENT_DELETE_IN_PROGRESS", "INTERNAL_ERROR"
2469
2497
  # resp.studio_components[0].status_message #=> String
@@ -3162,8 +3190,8 @@ module Aws::NimbleStudio
3162
3190
  #
3163
3191
  # resp = client.update_streaming_image({
3164
3192
  # client_token: "ClientToken",
3165
- # description: "SyntheticUpdateStreamingImageRequestStreamingImageDescription",
3166
- # name: "SyntheticUpdateStreamingImageRequestStreamingImageName",
3193
+ # description: "StreamingImageDescription",
3194
+ # name: "StreamingImageName",
3167
3195
  # streaming_image_id: "String", # required
3168
3196
  # studio_id: "String", # required
3169
3197
  # })
@@ -3231,11 +3259,11 @@ module Aws::NimbleStudio
3231
3259
  # @example Request syntax with placeholder values
3232
3260
  #
3233
3261
  # resp = client.update_studio({
3234
- # admin_role_arn: "String",
3262
+ # admin_role_arn: "RoleArn",
3235
3263
  # client_token: "ClientToken",
3236
- # display_name: "SyntheticUpdateStudioRequestStudioDisplayName",
3264
+ # display_name: "StudioDisplayName",
3237
3265
  # studio_id: "String", # required
3238
- # user_role_arn: "String",
3266
+ # user_role_arn: "RoleArn",
3239
3267
  # })
3240
3268
  #
3241
3269
  # @example Response structure
@@ -3294,9 +3322,19 @@ module Aws::NimbleStudio
3294
3322
  # @option params [String] :name
3295
3323
  # The name for the studio component.
3296
3324
  #
3325
+ # @option params [String] :runtime_role_arn
3326
+ # An IAM role attached to a Studio Component that gives the studio
3327
+ # component access to AWS resources at anytime while the instance is
3328
+ # running.
3329
+ #
3297
3330
  # @option params [Array<Types::ScriptParameterKeyValue>] :script_parameters
3298
3331
  # Parameters for the studio component scripts.
3299
3332
  #
3333
+ # @option params [String] :secure_initialization_role_arn
3334
+ # An IAM role attached to Studio Component when the system
3335
+ # initialization script runs which give the studio component access to
3336
+ # AWS resources when the system initialization script runs.
3337
+ #
3300
3338
  # @option params [required, String] :studio_component_id
3301
3339
  # The studio component ID.
3302
3340
  #
@@ -3330,16 +3368,16 @@ module Aws::NimbleStudio
3330
3368
  # },
3331
3369
  # compute_farm_configuration: {
3332
3370
  # active_directory_user: "String",
3333
- # endpoint: "SyntheticComputeFarmConfigurationString",
3371
+ # endpoint: "SensitiveString",
3334
3372
  # },
3335
3373
  # license_service_configuration: {
3336
- # endpoint: "SyntheticLicenseServiceConfigurationString",
3374
+ # endpoint: "SensitiveString",
3337
3375
  # },
3338
3376
  # shared_file_system_configuration: {
3339
- # endpoint: "SyntheticSharedFileSystemConfigurationString",
3377
+ # endpoint: "SensitiveString",
3340
3378
  # file_system_id: "String",
3341
3379
  # linux_mount_point: "LinuxMountPoint",
3342
- # share_name: "SyntheticSharedFileSystemConfigurationString",
3380
+ # share_name: "SensitiveString",
3343
3381
  # windows_mount_drive: "WindowsMountDrive",
3344
3382
  # },
3345
3383
  # },
@@ -3354,12 +3392,14 @@ module Aws::NimbleStudio
3354
3392
  # },
3355
3393
  # ],
3356
3394
  # name: "StudioComponentName",
3395
+ # runtime_role_arn: "RoleArn",
3357
3396
  # script_parameters: [
3358
3397
  # {
3359
3398
  # key: "ScriptParameterKey",
3360
3399
  # value: "ScriptParameterValue",
3361
3400
  # },
3362
3401
  # ],
3402
+ # secure_initialization_role_arn: "RoleArn",
3363
3403
  # studio_component_id: "String", # required
3364
3404
  # studio_id: "String", # required
3365
3405
  # subtype: "AWS_MANAGED_MICROSOFT_AD", # accepts AWS_MANAGED_MICROSOFT_AD, AMAZON_FSX_FOR_WINDOWS, AMAZON_FSX_FOR_LUSTRE, CUSTOM
@@ -3393,9 +3433,11 @@ module Aws::NimbleStudio
3393
3433
  # resp.studio_component.initialization_scripts[0].run_context #=> String, one of "SYSTEM_INITIALIZATION", "USER_INITIALIZATION"
3394
3434
  # resp.studio_component.initialization_scripts[0].script #=> String
3395
3435
  # resp.studio_component.name #=> String
3436
+ # resp.studio_component.runtime_role_arn #=> String
3396
3437
  # resp.studio_component.script_parameters #=> Array
3397
3438
  # resp.studio_component.script_parameters[0].key #=> String
3398
3439
  # resp.studio_component.script_parameters[0].value #=> String
3440
+ # resp.studio_component.secure_initialization_role_arn #=> String
3399
3441
  # resp.studio_component.state #=> String, one of "CREATE_IN_PROGRESS", "READY", "UPDATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "DELETED", "DELETE_FAILED", "CREATE_FAILED", "UPDATE_FAILED"
3400
3442
  # resp.studio_component.status_code #=> String, one of "ACTIVE_DIRECTORY_ALREADY_EXISTS", "STUDIO_COMPONENT_CREATED", "STUDIO_COMPONENT_UPDATED", "STUDIO_COMPONENT_DELETED", "ENCRYPTION_KEY_ACCESS_DENIED", "ENCRYPTION_KEY_NOT_FOUND", "STUDIO_COMPONENT_CREATE_IN_PROGRESS", "STUDIO_COMPONENT_UPDATE_IN_PROGRESS", "STUDIO_COMPONENT_DELETE_IN_PROGRESS", "INTERNAL_ERROR"
3401
3443
  # resp.studio_component.status_message #=> String
@@ -3429,7 +3471,7 @@ module Aws::NimbleStudio
3429
3471
  params: params,
3430
3472
  config: config)
3431
3473
  context[:gem_name] = 'aws-sdk-nimblestudio'
3432
- context[:gem_version] = '1.11.0'
3474
+ context[:gem_version] = '1.14.0'
3433
3475
  Seahorse::Client::Request.new(handlers, context)
3434
3476
  end
3435
3477
 
@@ -147,10 +147,12 @@ module Aws::NimbleStudio
147
147
  PutStudioMembersResponse = Shapes::StructureShape.new(name: 'PutStudioMembersResponse')
148
148
  Region = Shapes::StringShape.new(name: 'Region')
149
149
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
150
+ RoleArn = Shapes::StringShape.new(name: 'RoleArn')
150
151
  ScriptParameterKey = Shapes::StringShape.new(name: 'ScriptParameterKey')
151
152
  ScriptParameterKeyValue = Shapes::StructureShape.new(name: 'ScriptParameterKeyValue')
152
153
  ScriptParameterValue = Shapes::StringShape.new(name: 'ScriptParameterValue')
153
154
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
155
+ SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
154
156
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
155
157
  SharedFileSystemConfiguration = Shapes::StructureShape.new(name: 'SharedFileSystemConfiguration')
156
158
  StartStreamingSessionRequest = Shapes::StructureShape.new(name: 'StartStreamingSessionRequest')
@@ -166,12 +168,14 @@ module Aws::NimbleStudio
166
168
  StreamConfigurationSessionStorage = Shapes::StructureShape.new(name: 'StreamConfigurationSessionStorage')
167
169
  StreamingClipboardMode = Shapes::StringShape.new(name: 'StreamingClipboardMode')
168
170
  StreamingImage = Shapes::StructureShape.new(name: 'StreamingImage')
171
+ StreamingImageDescription = Shapes::StringShape.new(name: 'StreamingImageDescription')
169
172
  StreamingImageEncryptionConfiguration = Shapes::StructureShape.new(name: 'StreamingImageEncryptionConfiguration')
170
173
  StreamingImageEncryptionConfigurationKeyArn = Shapes::StringShape.new(name: 'StreamingImageEncryptionConfigurationKeyArn')
171
174
  StreamingImageEncryptionConfigurationKeyType = Shapes::StringShape.new(name: 'StreamingImageEncryptionConfigurationKeyType')
172
175
  StreamingImageId = Shapes::StringShape.new(name: 'StreamingImageId')
173
176
  StreamingImageIdList = Shapes::ListShape.new(name: 'StreamingImageIdList')
174
177
  StreamingImageList = Shapes::ListShape.new(name: 'StreamingImageList')
178
+ StreamingImageName = Shapes::StringShape.new(name: 'StreamingImageName')
175
179
  StreamingImageOwner = Shapes::StringShape.new(name: 'StreamingImageOwner')
176
180
  StreamingImagePlatform = Shapes::StringShape.new(name: 'StreamingImagePlatform')
177
181
  StreamingImageState = Shapes::StringShape.new(name: 'StreamingImageState')
@@ -215,6 +219,7 @@ module Aws::NimbleStudio
215
219
  StudioComponentSummaryList = Shapes::ListShape.new(name: 'StudioComponentSummaryList')
216
220
  StudioComponentType = Shapes::StringShape.new(name: 'StudioComponentType')
217
221
  StudioComponentTypeList = Shapes::ListShape.new(name: 'StudioComponentTypeList')
222
+ StudioDisplayName = Shapes::StringShape.new(name: 'StudioDisplayName')
218
223
  StudioEncryptionConfiguration = Shapes::StructureShape.new(name: 'StudioEncryptionConfiguration')
219
224
  StudioEncryptionConfigurationKeyArn = Shapes::StringShape.new(name: 'StudioEncryptionConfigurationKeyArn')
220
225
  StudioEncryptionConfigurationKeyType = Shapes::StringShape.new(name: 'StudioEncryptionConfigurationKeyType')
@@ -225,19 +230,6 @@ module Aws::NimbleStudio
225
230
  StudioPersona = Shapes::StringShape.new(name: 'StudioPersona')
226
231
  StudioState = Shapes::StringShape.new(name: 'StudioState')
227
232
  StudioStatusCode = Shapes::StringShape.new(name: 'StudioStatusCode')
228
- SyntheticComputeFarmConfigurationString = Shapes::StringShape.new(name: 'SyntheticComputeFarmConfigurationString')
229
- SyntheticCreateStreamingImageRequestStreamingImageDescription = Shapes::StringShape.new(name: 'SyntheticCreateStreamingImageRequestStreamingImageDescription')
230
- SyntheticCreateStreamingImageRequestStreamingImageName = Shapes::StringShape.new(name: 'SyntheticCreateStreamingImageRequestStreamingImageName')
231
- SyntheticCreateStudioRequestStudioDisplayName = Shapes::StringShape.new(name: 'SyntheticCreateStudioRequestStudioDisplayName')
232
- SyntheticLicenseServiceConfigurationString = Shapes::StringShape.new(name: 'SyntheticLicenseServiceConfigurationString')
233
- SyntheticSharedFileSystemConfigurationString = Shapes::StringShape.new(name: 'SyntheticSharedFileSystemConfigurationString')
234
- SyntheticStreamingImageStreamingImageDescription = Shapes::StringShape.new(name: 'SyntheticStreamingImageStreamingImageDescription')
235
- SyntheticStreamingImageStreamingImageName = Shapes::StringShape.new(name: 'SyntheticStreamingImageStreamingImageName')
236
- SyntheticStreamingSessionStreamString = Shapes::StringShape.new(name: 'SyntheticStreamingSessionStreamString')
237
- SyntheticStudioStudioDisplayName = Shapes::StringShape.new(name: 'SyntheticStudioStudioDisplayName')
238
- SyntheticUpdateStreamingImageRequestStreamingImageDescription = Shapes::StringShape.new(name: 'SyntheticUpdateStreamingImageRequestStreamingImageDescription')
239
- SyntheticUpdateStreamingImageRequestStreamingImageName = Shapes::StringShape.new(name: 'SyntheticUpdateStreamingImageRequestStreamingImageName')
240
- SyntheticUpdateStudioRequestStudioDisplayName = Shapes::StringShape.new(name: 'SyntheticUpdateStudioRequestStudioDisplayName')
241
233
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
242
234
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
243
235
  Tags = Shapes::MapShape.new(name: 'Tags')
@@ -287,7 +279,7 @@ module Aws::NimbleStudio
287
279
  ActiveDirectoryDnsIpAddressList.member = Shapes::ShapeRef.new(shape: ActiveDirectoryDnsIpAddress)
288
280
 
289
281
  ComputeFarmConfiguration.add_member(:active_directory_user, Shapes::ShapeRef.new(shape: String, location_name: "activeDirectoryUser"))
290
- ComputeFarmConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SyntheticComputeFarmConfigurationString, location_name: "endpoint"))
282
+ ComputeFarmConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "endpoint"))
291
283
  ComputeFarmConfiguration.struct_class = Types::ComputeFarmConfiguration
292
284
 
293
285
  ConflictException.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
@@ -310,9 +302,9 @@ module Aws::NimbleStudio
310
302
  CreateLaunchProfileResponse.struct_class = Types::CreateLaunchProfileResponse
311
303
 
312
304
  CreateStreamingImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
313
- CreateStreamingImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: SyntheticCreateStreamingImageRequestStreamingImageDescription, location_name: "description"))
305
+ CreateStreamingImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: StreamingImageDescription, location_name: "description"))
314
306
  CreateStreamingImageRequest.add_member(:ec2_image_id, Shapes::ShapeRef.new(shape: EC2ImageId, required: true, location_name: "ec2ImageId"))
315
- CreateStreamingImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: SyntheticCreateStreamingImageRequestStreamingImageName, required: true, location_name: "name"))
307
+ CreateStreamingImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: StreamingImageName, required: true, location_name: "name"))
316
308
  CreateStreamingImageRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioId"))
317
309
  CreateStreamingImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
318
310
  CreateStreamingImageRequest.struct_class = Types::CreateStreamingImageRequest
@@ -347,7 +339,9 @@ module Aws::NimbleStudio
347
339
  CreateStudioComponentRequest.add_member(:ec2_security_group_ids, Shapes::ShapeRef.new(shape: StudioComponentSecurityGroupIdList, location_name: "ec2SecurityGroupIds"))
348
340
  CreateStudioComponentRequest.add_member(:initialization_scripts, Shapes::ShapeRef.new(shape: StudioComponentInitializationScriptList, location_name: "initializationScripts"))
349
341
  CreateStudioComponentRequest.add_member(:name, Shapes::ShapeRef.new(shape: StudioComponentName, required: true, location_name: "name"))
342
+ CreateStudioComponentRequest.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
350
343
  CreateStudioComponentRequest.add_member(:script_parameters, Shapes::ShapeRef.new(shape: StudioComponentScriptParameterKeyValueList, location_name: "scriptParameters"))
344
+ CreateStudioComponentRequest.add_member(:secure_initialization_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "secureInitializationRoleArn"))
351
345
  CreateStudioComponentRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioId"))
352
346
  CreateStudioComponentRequest.add_member(:subtype, Shapes::ShapeRef.new(shape: StudioComponentSubtype, location_name: "subtype"))
353
347
  CreateStudioComponentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
@@ -357,13 +351,13 @@ module Aws::NimbleStudio
357
351
  CreateStudioComponentResponse.add_member(:studio_component, Shapes::ShapeRef.new(shape: StudioComponent, location_name: "studioComponent"))
358
352
  CreateStudioComponentResponse.struct_class = Types::CreateStudioComponentResponse
359
353
 
360
- CreateStudioRequest.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "adminRoleArn"))
354
+ CreateStudioRequest.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "adminRoleArn"))
361
355
  CreateStudioRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
362
- CreateStudioRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: SyntheticCreateStudioRequestStudioDisplayName, required: true, location_name: "displayName"))
356
+ CreateStudioRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: StudioDisplayName, required: true, location_name: "displayName"))
363
357
  CreateStudioRequest.add_member(:studio_encryption_configuration, Shapes::ShapeRef.new(shape: StudioEncryptionConfiguration, location_name: "studioEncryptionConfiguration"))
364
358
  CreateStudioRequest.add_member(:studio_name, Shapes::ShapeRef.new(shape: StudioName, required: true, location_name: "studioName"))
365
359
  CreateStudioRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
366
- CreateStudioRequest.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "userRoleArn"))
360
+ CreateStudioRequest.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "userRoleArn"))
367
361
  CreateStudioRequest.struct_class = Types::CreateStudioRequest
368
362
 
369
363
  CreateStudioResponse.add_member(:studio, Shapes::ShapeRef.new(shape: Studio, location_name: "studio"))
@@ -574,7 +568,9 @@ module Aws::NimbleStudio
574
568
  LaunchProfileInitializationActiveDirectory.add_member(:studio_component_name, Shapes::ShapeRef.new(shape: StudioComponentName, location_name: "studioComponentName"))
575
569
  LaunchProfileInitializationActiveDirectory.struct_class = Types::LaunchProfileInitializationActiveDirectory
576
570
 
571
+ LaunchProfileInitializationScript.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
577
572
  LaunchProfileInitializationScript.add_member(:script, Shapes::ShapeRef.new(shape: StudioComponentInitializationScriptContent, location_name: "script"))
573
+ LaunchProfileInitializationScript.add_member(:secure_initialization_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "secureInitializationRoleArn"))
578
574
  LaunchProfileInitializationScript.add_member(:studio_component_id, Shapes::ShapeRef.new(shape: StudioComponentId, location_name: "studioComponentId"))
579
575
  LaunchProfileInitializationScript.add_member(:studio_component_name, Shapes::ShapeRef.new(shape: StudioComponentName, location_name: "studioComponentName"))
580
576
  LaunchProfileInitializationScript.struct_class = Types::LaunchProfileInitializationScript
@@ -599,7 +595,7 @@ module Aws::NimbleStudio
599
595
 
600
596
  LaunchProfileStudioComponentIdList.member = Shapes::ShapeRef.new(shape: String)
601
597
 
602
- LicenseServiceConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SyntheticLicenseServiceConfigurationString, location_name: "endpoint"))
598
+ LicenseServiceConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "endpoint"))
603
599
  LicenseServiceConfiguration.struct_class = Types::LicenseServiceConfiguration
604
600
 
605
601
  ListEulaAcceptancesRequest.add_member(:eula_ids, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "eulaIds"))
@@ -736,10 +732,10 @@ module Aws::NimbleStudio
736
732
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
737
733
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
738
734
 
739
- SharedFileSystemConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SyntheticSharedFileSystemConfigurationString, location_name: "endpoint"))
735
+ SharedFileSystemConfiguration.add_member(:endpoint, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "endpoint"))
740
736
  SharedFileSystemConfiguration.add_member(:file_system_id, Shapes::ShapeRef.new(shape: String, location_name: "fileSystemId"))
741
737
  SharedFileSystemConfiguration.add_member(:linux_mount_point, Shapes::ShapeRef.new(shape: LinuxMountPoint, location_name: "linuxMountPoint"))
742
- SharedFileSystemConfiguration.add_member(:share_name, Shapes::ShapeRef.new(shape: SyntheticSharedFileSystemConfigurationString, location_name: "shareName"))
738
+ SharedFileSystemConfiguration.add_member(:share_name, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "shareName"))
743
739
  SharedFileSystemConfiguration.add_member(:windows_mount_drive, Shapes::ShapeRef.new(shape: WindowsMountDrive, location_name: "windowsMountDrive"))
744
740
  SharedFileSystemConfiguration.struct_class = Types::SharedFileSystemConfiguration
745
741
 
@@ -787,11 +783,11 @@ module Aws::NimbleStudio
787
783
  StreamConfigurationSessionStorage.struct_class = Types::StreamConfigurationSessionStorage
788
784
 
789
785
  StreamingImage.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
790
- StreamingImage.add_member(:description, Shapes::ShapeRef.new(shape: SyntheticStreamingImageStreamingImageDescription, location_name: "description"))
786
+ StreamingImage.add_member(:description, Shapes::ShapeRef.new(shape: StreamingImageDescription, location_name: "description"))
791
787
  StreamingImage.add_member(:ec2_image_id, Shapes::ShapeRef.new(shape: EC2ImageId, location_name: "ec2ImageId"))
792
788
  StreamingImage.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: StreamingImageEncryptionConfiguration, location_name: "encryptionConfiguration"))
793
789
  StreamingImage.add_member(:eula_ids, Shapes::ShapeRef.new(shape: EulaIdList, location_name: "eulaIds"))
794
- StreamingImage.add_member(:name, Shapes::ShapeRef.new(shape: SyntheticStreamingImageStreamingImageName, location_name: "name"))
790
+ StreamingImage.add_member(:name, Shapes::ShapeRef.new(shape: StreamingImageName, location_name: "name"))
795
791
  StreamingImage.add_member(:owner, Shapes::ShapeRef.new(shape: StreamingImageOwner, location_name: "owner"))
796
792
  StreamingImage.add_member(:platform, Shapes::ShapeRef.new(shape: StreamingImagePlatform, location_name: "platform"))
797
793
  StreamingImage.add_member(:state, Shapes::ShapeRef.new(shape: StreamingImageState, location_name: "state"))
@@ -848,15 +844,15 @@ module Aws::NimbleStudio
848
844
  StreamingSessionStream.add_member(:state, Shapes::ShapeRef.new(shape: StreamingSessionStreamState, location_name: "state"))
849
845
  StreamingSessionStream.add_member(:status_code, Shapes::ShapeRef.new(shape: StreamingSessionStreamStatusCode, location_name: "statusCode"))
850
846
  StreamingSessionStream.add_member(:stream_id, Shapes::ShapeRef.new(shape: String, location_name: "streamId"))
851
- StreamingSessionStream.add_member(:url, Shapes::ShapeRef.new(shape: SyntheticStreamingSessionStreamString, location_name: "url"))
847
+ StreamingSessionStream.add_member(:url, Shapes::ShapeRef.new(shape: SensitiveString, location_name: "url"))
852
848
  StreamingSessionStream.struct_class = Types::StreamingSessionStream
853
849
 
854
850
  StringList.member = Shapes::ShapeRef.new(shape: String)
855
851
 
856
- Studio.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "adminRoleArn"))
852
+ Studio.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "adminRoleArn"))
857
853
  Studio.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
858
854
  Studio.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
859
- Studio.add_member(:display_name, Shapes::ShapeRef.new(shape: SyntheticStudioStudioDisplayName, location_name: "displayName"))
855
+ Studio.add_member(:display_name, Shapes::ShapeRef.new(shape: StudioDisplayName, location_name: "displayName"))
860
856
  Studio.add_member(:home_region, Shapes::ShapeRef.new(shape: Region, location_name: "homeRegion"))
861
857
  Studio.add_member(:sso_client_id, Shapes::ShapeRef.new(shape: String, location_name: "ssoClientId"))
862
858
  Studio.add_member(:state, Shapes::ShapeRef.new(shape: StudioState, location_name: "state"))
@@ -868,7 +864,7 @@ module Aws::NimbleStudio
868
864
  Studio.add_member(:studio_url, Shapes::ShapeRef.new(shape: String, location_name: "studioUrl"))
869
865
  Studio.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
870
866
  Studio.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
871
- Studio.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "userRoleArn"))
867
+ Studio.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "userRoleArn"))
872
868
  Studio.struct_class = Types::Studio
873
869
 
874
870
  StudioComponent.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "arn"))
@@ -879,7 +875,9 @@ module Aws::NimbleStudio
879
875
  StudioComponent.add_member(:ec2_security_group_ids, Shapes::ShapeRef.new(shape: StudioComponentSecurityGroupIdList, location_name: "ec2SecurityGroupIds"))
880
876
  StudioComponent.add_member(:initialization_scripts, Shapes::ShapeRef.new(shape: StudioComponentInitializationScriptList, location_name: "initializationScripts"))
881
877
  StudioComponent.add_member(:name, Shapes::ShapeRef.new(shape: StudioComponentName, location_name: "name"))
878
+ StudioComponent.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
882
879
  StudioComponent.add_member(:script_parameters, Shapes::ShapeRef.new(shape: StudioComponentScriptParameterKeyValueList, location_name: "scriptParameters"))
880
+ StudioComponent.add_member(:secure_initialization_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "secureInitializationRoleArn"))
883
881
  StudioComponent.add_member(:state, Shapes::ShapeRef.new(shape: StudioComponentState, location_name: "state"))
884
882
  StudioComponent.add_member(:status_code, Shapes::ShapeRef.new(shape: StudioComponentStatusCode, location_name: "statusCode"))
885
883
  StudioComponent.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
@@ -992,8 +990,8 @@ module Aws::NimbleStudio
992
990
  UpdateLaunchProfileResponse.struct_class = Types::UpdateLaunchProfileResponse
993
991
 
994
992
  UpdateStreamingImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
995
- UpdateStreamingImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: SyntheticUpdateStreamingImageRequestStreamingImageDescription, location_name: "description"))
996
- UpdateStreamingImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: SyntheticUpdateStreamingImageRequestStreamingImageName, location_name: "name"))
993
+ UpdateStreamingImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: StreamingImageDescription, location_name: "description"))
994
+ UpdateStreamingImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: StreamingImageName, location_name: "name"))
997
995
  UpdateStreamingImageRequest.add_member(:streaming_image_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "streamingImageId"))
998
996
  UpdateStreamingImageRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioId"))
999
997
  UpdateStreamingImageRequest.struct_class = Types::UpdateStreamingImageRequest
@@ -1007,7 +1005,9 @@ module Aws::NimbleStudio
1007
1005
  UpdateStudioComponentRequest.add_member(:ec2_security_group_ids, Shapes::ShapeRef.new(shape: StudioComponentSecurityGroupIdList, location_name: "ec2SecurityGroupIds"))
1008
1006
  UpdateStudioComponentRequest.add_member(:initialization_scripts, Shapes::ShapeRef.new(shape: StudioComponentInitializationScriptList, location_name: "initializationScripts"))
1009
1007
  UpdateStudioComponentRequest.add_member(:name, Shapes::ShapeRef.new(shape: StudioComponentName, location_name: "name"))
1008
+ UpdateStudioComponentRequest.add_member(:runtime_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "runtimeRoleArn"))
1010
1009
  UpdateStudioComponentRequest.add_member(:script_parameters, Shapes::ShapeRef.new(shape: StudioComponentScriptParameterKeyValueList, location_name: "scriptParameters"))
1010
+ UpdateStudioComponentRequest.add_member(:secure_initialization_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "secureInitializationRoleArn"))
1011
1011
  UpdateStudioComponentRequest.add_member(:studio_component_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioComponentId"))
1012
1012
  UpdateStudioComponentRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioId"))
1013
1013
  UpdateStudioComponentRequest.add_member(:subtype, Shapes::ShapeRef.new(shape: StudioComponentSubtype, location_name: "subtype"))
@@ -1017,11 +1017,11 @@ module Aws::NimbleStudio
1017
1017
  UpdateStudioComponentResponse.add_member(:studio_component, Shapes::ShapeRef.new(shape: StudioComponent, location_name: "studioComponent"))
1018
1018
  UpdateStudioComponentResponse.struct_class = Types::UpdateStudioComponentResponse
1019
1019
 
1020
- UpdateStudioRequest.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "adminRoleArn"))
1020
+ UpdateStudioRequest.add_member(:admin_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "adminRoleArn"))
1021
1021
  UpdateStudioRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "X-Amz-Client-Token", metadata: {"idempotencyToken"=>true}))
1022
- UpdateStudioRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: SyntheticUpdateStudioRequestStudioDisplayName, location_name: "displayName"))
1022
+ UpdateStudioRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: StudioDisplayName, location_name: "displayName"))
1023
1023
  UpdateStudioRequest.add_member(:studio_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "studioId"))
1024
- UpdateStudioRequest.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "userRoleArn"))
1024
+ UpdateStudioRequest.add_member(:user_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "userRoleArn"))
1025
1025
  UpdateStudioRequest.struct_class = Types::UpdateStudioRequest
1026
1026
 
1027
1027
  UpdateStudioResponse.add_member(:studio, Shapes::ShapeRef.new(shape: Studio, required: true, location_name: "studio"))
@@ -161,7 +161,7 @@ module Aws::NimbleStudio
161
161
  #
162
162
  # {
163
163
  # active_directory_user: "String",
164
- # endpoint: "SyntheticComputeFarmConfigurationString",
164
+ # endpoint: "SensitiveString",
165
165
  # }
166
166
  #
167
167
  # @!attribute [rw] active_directory_user
@@ -317,9 +317,9 @@ module Aws::NimbleStudio
317
317
  #
318
318
  # {
319
319
  # client_token: "ClientToken",
320
- # description: "SyntheticCreateStreamingImageRequestStreamingImageDescription",
320
+ # description: "StreamingImageDescription",
321
321
  # ec2_image_id: "EC2ImageId", # required
322
- # name: "SyntheticCreateStreamingImageRequestStreamingImageName", # required
322
+ # name: "StreamingImageName", # required
323
323
  # studio_id: "String", # required
324
324
  # tags: {
325
325
  # "String" => "String",
@@ -534,16 +534,16 @@ module Aws::NimbleStudio
534
534
  # },
535
535
  # compute_farm_configuration: {
536
536
  # active_directory_user: "String",
537
- # endpoint: "SyntheticComputeFarmConfigurationString",
537
+ # endpoint: "SensitiveString",
538
538
  # },
539
539
  # license_service_configuration: {
540
- # endpoint: "SyntheticLicenseServiceConfigurationString",
540
+ # endpoint: "SensitiveString",
541
541
  # },
542
542
  # shared_file_system_configuration: {
543
- # endpoint: "SyntheticSharedFileSystemConfigurationString",
543
+ # endpoint: "SensitiveString",
544
544
  # file_system_id: "String",
545
545
  # linux_mount_point: "LinuxMountPoint",
546
- # share_name: "SyntheticSharedFileSystemConfigurationString",
546
+ # share_name: "SensitiveString",
547
547
  # windows_mount_drive: "WindowsMountDrive",
548
548
  # },
549
549
  # },
@@ -558,12 +558,14 @@ module Aws::NimbleStudio
558
558
  # },
559
559
  # ],
560
560
  # name: "StudioComponentName", # required
561
+ # runtime_role_arn: "RoleArn",
561
562
  # script_parameters: [
562
563
  # {
563
564
  # key: "ScriptParameterKey",
564
565
  # value: "ScriptParameterValue",
565
566
  # },
566
567
  # ],
568
+ # secure_initialization_role_arn: "RoleArn",
567
569
  # studio_id: "String", # required
568
570
  # subtype: "AWS_MANAGED_MICROSOFT_AD", # accepts AWS_MANAGED_MICROSOFT_AD, AMAZON_FSX_FOR_WINDOWS, AMAZON_FSX_FOR_LUSTRE, CUSTOM
569
571
  # tags: {
@@ -602,10 +604,22 @@ module Aws::NimbleStudio
602
604
  # The name for the studio component.
603
605
  # @return [String]
604
606
  #
607
+ # @!attribute [rw] runtime_role_arn
608
+ # An IAM role attached to a Studio Component that gives the studio
609
+ # component access to AWS resources at anytime while the instance is
610
+ # running.
611
+ # @return [String]
612
+ #
605
613
  # @!attribute [rw] script_parameters
606
614
  # Parameters for the studio component scripts.
607
615
  # @return [Array<Types::ScriptParameterKeyValue>]
608
616
  #
617
+ # @!attribute [rw] secure_initialization_role_arn
618
+ # An IAM role attached to Studio Component when the system
619
+ # initialization script runs which give the studio component access to
620
+ # AWS resources when the system initialization script runs.
621
+ # @return [String]
622
+ #
609
623
  # @!attribute [rw] studio_id
610
624
  # The studio ID.
611
625
  # @return [String]
@@ -632,7 +646,9 @@ module Aws::NimbleStudio
632
646
  :ec2_security_group_ids,
633
647
  :initialization_scripts,
634
648
  :name,
649
+ :runtime_role_arn,
635
650
  :script_parameters,
651
+ :secure_initialization_role_arn,
636
652
  :studio_id,
637
653
  :subtype,
638
654
  :tags,
@@ -657,9 +673,9 @@ module Aws::NimbleStudio
657
673
  # data as a hash:
658
674
  #
659
675
  # {
660
- # admin_role_arn: "String", # required
676
+ # admin_role_arn: "RoleArn", # required
661
677
  # client_token: "ClientToken",
662
- # display_name: "SyntheticCreateStudioRequestStudioDisplayName", # required
678
+ # display_name: "StudioDisplayName", # required
663
679
  # studio_encryption_configuration: {
664
680
  # key_arn: "StudioEncryptionConfigurationKeyArn",
665
681
  # key_type: "AWS_OWNED_KEY", # required, accepts AWS_OWNED_KEY, CUSTOMER_MANAGED_KEY
@@ -668,7 +684,7 @@ module Aws::NimbleStudio
668
684
  # tags: {
669
685
  # "String" => "String",
670
686
  # },
671
- # user_role_arn: "String", # required
687
+ # user_role_arn: "RoleArn", # required
672
688
  # }
673
689
  #
674
690
  # @!attribute [rw] admin_role_arn
@@ -1810,10 +1826,22 @@ module Aws::NimbleStudio
1810
1826
  # The Launch Profile Initialization Script is used when start streaming
1811
1827
  # session runs.
1812
1828
  #
1829
+ # @!attribute [rw] runtime_role_arn
1830
+ # An IAM role attached to a Studio Component that gives the studio
1831
+ # component access to AWS resources at anytime while the instance is
1832
+ # running.
1833
+ # @return [String]
1834
+ #
1813
1835
  # @!attribute [rw] script
1814
1836
  # The initialization script.
1815
1837
  # @return [String]
1816
1838
  #
1839
+ # @!attribute [rw] secure_initialization_role_arn
1840
+ # An IAM role attached to Studio Component when the system
1841
+ # initialization script runs which give the studio component access to
1842
+ # AWS resources when the system initialization script runs.
1843
+ # @return [String]
1844
+ #
1817
1845
  # @!attribute [rw] studio_component_id
1818
1846
  # The unique identifier for a studio component resource.
1819
1847
  # @return [String]
@@ -1825,7 +1853,9 @@ module Aws::NimbleStudio
1825
1853
  # @see http://docs.aws.amazon.com/goto/WebAPI/nimble-2020-08-01/LaunchProfileInitializationScript AWS API Documentation
1826
1854
  #
1827
1855
  class LaunchProfileInitializationScript < Struct.new(
1856
+ :runtime_role_arn,
1828
1857
  :script,
1858
+ :secure_initialization_role_arn,
1829
1859
  :studio_component_id,
1830
1860
  :studio_component_name)
1831
1861
  SENSITIVE = [:script, :studio_component_name]
@@ -1888,7 +1918,7 @@ module Aws::NimbleStudio
1888
1918
  # data as a hash:
1889
1919
  #
1890
1920
  # {
1891
- # endpoint: "SyntheticLicenseServiceConfigurationString",
1921
+ # endpoint: "SensitiveString",
1892
1922
  # }
1893
1923
  #
1894
1924
  # @!attribute [rw] endpoint
@@ -2656,10 +2686,10 @@ module Aws::NimbleStudio
2656
2686
  # data as a hash:
2657
2687
  #
2658
2688
  # {
2659
- # endpoint: "SyntheticSharedFileSystemConfigurationString",
2689
+ # endpoint: "SensitiveString",
2660
2690
  # file_system_id: "String",
2661
2691
  # linux_mount_point: "LinuxMountPoint",
2662
- # share_name: "SyntheticSharedFileSystemConfigurationString",
2692
+ # share_name: "SensitiveString",
2663
2693
  # windows_mount_drive: "WindowsMountDrive",
2664
2694
  # }
2665
2695
  #
@@ -2870,13 +2900,13 @@ module Aws::NimbleStudio
2870
2900
  # If you then call `StopStreamingSession`, the session fails. If the
2871
2901
  # time that a session stays in the READY state exceeds the
2872
2902
  # `maxSessionLengthInMinutes` value, the session will automatically be
2873
- # terminated by AWS (instead of stopped).
2903
+ # terminated (instead of stopped).
2874
2904
  #
2875
2905
  # If the value is set to a positive number, the session can be
2876
2906
  # stopped. You can call `StopStreamingSession` to stop sessions in the
2877
2907
  # READY state. If the time that a session stays in the READY state
2878
2908
  # exceeds the `maxSessionLengthInMinutes` value, the session will
2879
- # automatically be stopped by AWS (instead of terminated).
2909
+ # automatically be stopped (instead of terminated).
2880
2910
  # @return [Integer]
2881
2911
  #
2882
2912
  # @!attribute [rw] session_storage
@@ -2949,13 +2979,13 @@ module Aws::NimbleStudio
2949
2979
  # If you then call `StopStreamingSession`, the session fails. If the
2950
2980
  # time that a session stays in the READY state exceeds the
2951
2981
  # `maxSessionLengthInMinutes` value, the session will automatically be
2952
- # terminated by AWS (instead of stopped).
2982
+ # terminated (instead of stopped).
2953
2983
  #
2954
2984
  # If the value is set to a positive number, the session can be
2955
2985
  # stopped. You can call `StopStreamingSession` to stop sessions in the
2956
2986
  # READY state. If the time that a session stays in the READY state
2957
2987
  # exceeds the `maxSessionLengthInMinutes` value, the session will
2958
- # automatically be stopped by AWS (instead of terminated).
2988
+ # automatically be stopped (instead of terminated).
2959
2989
  # @return [Integer]
2960
2990
  #
2961
2991
  # @!attribute [rw] session_storage
@@ -3489,10 +3519,22 @@ module Aws::NimbleStudio
3489
3519
  # A friendly name for the studio component resource.
3490
3520
  # @return [String]
3491
3521
  #
3522
+ # @!attribute [rw] runtime_role_arn
3523
+ # An IAM role attached to a Studio Component that gives the studio
3524
+ # component access to AWS resources at anytime while the instance is
3525
+ # running.
3526
+ # @return [String]
3527
+ #
3492
3528
  # @!attribute [rw] script_parameters
3493
3529
  # Parameters for the studio component scripts.
3494
3530
  # @return [Array<Types::ScriptParameterKeyValue>]
3495
3531
  #
3532
+ # @!attribute [rw] secure_initialization_role_arn
3533
+ # An IAM role attached to Studio Component when the system
3534
+ # initialization script runs which give the studio component access to
3535
+ # AWS resources when the system initialization script runs.
3536
+ # @return [String]
3537
+ #
3496
3538
  # @!attribute [rw] state
3497
3539
  # The current state.
3498
3540
  # @return [String]
@@ -3542,7 +3584,9 @@ module Aws::NimbleStudio
3542
3584
  :ec2_security_group_ids,
3543
3585
  :initialization_scripts,
3544
3586
  :name,
3587
+ :runtime_role_arn,
3545
3588
  :script_parameters,
3589
+ :secure_initialization_role_arn,
3546
3590
  :state,
3547
3591
  :status_code,
3548
3592
  :status_message,
@@ -4014,8 +4058,8 @@ module Aws::NimbleStudio
4014
4058
  #
4015
4059
  # {
4016
4060
  # client_token: "ClientToken",
4017
- # description: "SyntheticUpdateStreamingImageRequestStreamingImageDescription",
4018
- # name: "SyntheticUpdateStreamingImageRequestStreamingImageName",
4061
+ # description: "StreamingImageDescription",
4062
+ # name: "StreamingImageName",
4019
4063
  # streaming_image_id: "String", # required
4020
4064
  # studio_id: "String", # required
4021
4065
  # }
@@ -4099,16 +4143,16 @@ module Aws::NimbleStudio
4099
4143
  # },
4100
4144
  # compute_farm_configuration: {
4101
4145
  # active_directory_user: "String",
4102
- # endpoint: "SyntheticComputeFarmConfigurationString",
4146
+ # endpoint: "SensitiveString",
4103
4147
  # },
4104
4148
  # license_service_configuration: {
4105
- # endpoint: "SyntheticLicenseServiceConfigurationString",
4149
+ # endpoint: "SensitiveString",
4106
4150
  # },
4107
4151
  # shared_file_system_configuration: {
4108
- # endpoint: "SyntheticSharedFileSystemConfigurationString",
4152
+ # endpoint: "SensitiveString",
4109
4153
  # file_system_id: "String",
4110
4154
  # linux_mount_point: "LinuxMountPoint",
4111
- # share_name: "SyntheticSharedFileSystemConfigurationString",
4155
+ # share_name: "SensitiveString",
4112
4156
  # windows_mount_drive: "WindowsMountDrive",
4113
4157
  # },
4114
4158
  # },
@@ -4123,12 +4167,14 @@ module Aws::NimbleStudio
4123
4167
  # },
4124
4168
  # ],
4125
4169
  # name: "StudioComponentName",
4170
+ # runtime_role_arn: "RoleArn",
4126
4171
  # script_parameters: [
4127
4172
  # {
4128
4173
  # key: "ScriptParameterKey",
4129
4174
  # value: "ScriptParameterValue",
4130
4175
  # },
4131
4176
  # ],
4177
+ # secure_initialization_role_arn: "RoleArn",
4132
4178
  # studio_component_id: "String", # required
4133
4179
  # studio_id: "String", # required
4134
4180
  # subtype: "AWS_MANAGED_MICROSOFT_AD", # accepts AWS_MANAGED_MICROSOFT_AD, AMAZON_FSX_FOR_WINDOWS, AMAZON_FSX_FOR_LUSTRE, CUSTOM
@@ -4165,10 +4211,22 @@ module Aws::NimbleStudio
4165
4211
  # The name for the studio component.
4166
4212
  # @return [String]
4167
4213
  #
4214
+ # @!attribute [rw] runtime_role_arn
4215
+ # An IAM role attached to a Studio Component that gives the studio
4216
+ # component access to AWS resources at anytime while the instance is
4217
+ # running.
4218
+ # @return [String]
4219
+ #
4168
4220
  # @!attribute [rw] script_parameters
4169
4221
  # Parameters for the studio component scripts.
4170
4222
  # @return [Array<Types::ScriptParameterKeyValue>]
4171
4223
  #
4224
+ # @!attribute [rw] secure_initialization_role_arn
4225
+ # An IAM role attached to Studio Component when the system
4226
+ # initialization script runs which give the studio component access to
4227
+ # AWS resources when the system initialization script runs.
4228
+ # @return [String]
4229
+ #
4172
4230
  # @!attribute [rw] studio_component_id
4173
4231
  # The studio component ID.
4174
4232
  # @return [String]
@@ -4194,7 +4252,9 @@ module Aws::NimbleStudio
4194
4252
  :ec2_security_group_ids,
4195
4253
  :initialization_scripts,
4196
4254
  :name,
4255
+ :runtime_role_arn,
4197
4256
  :script_parameters,
4257
+ :secure_initialization_role_arn,
4198
4258
  :studio_component_id,
4199
4259
  :studio_id,
4200
4260
  :subtype,
@@ -4219,11 +4279,11 @@ module Aws::NimbleStudio
4219
4279
  # data as a hash:
4220
4280
  #
4221
4281
  # {
4222
- # admin_role_arn: "String",
4282
+ # admin_role_arn: "RoleArn",
4223
4283
  # client_token: "ClientToken",
4224
- # display_name: "SyntheticUpdateStudioRequestStudioDisplayName",
4284
+ # display_name: "StudioDisplayName",
4225
4285
  # studio_id: "String", # required
4226
- # user_role_arn: "String",
4286
+ # user_role_arn: "RoleArn",
4227
4287
  # }
4228
4288
  #
4229
4289
  # @!attribute [rw] admin_role_arn
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-nimblestudio/customizations'
49
49
  # @!group service
50
50
  module Aws::NimbleStudio
51
51
 
52
- GEM_VERSION = '1.11.0'
52
+ GEM_VERSION = '1.14.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-nimblestudio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-13 00:00:00.000000000 Z
11
+ date: 2022-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement