aws-sdk-appstream 1.0.0.rc6 → 1.0.0.rc7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c5c521eba98e932e815695c909a92e644d8619e0
4
- data.tar.gz: cbe0b2e8f4ef1be7fc577ccbff971f124c6b70ce
3
+ metadata.gz: 9b5f276005ab8bfa8d3e1517db3bdf175891cbf8
4
+ data.tar.gz: 9d49711fdc91b342e0e7826f4501dd74ca10b08b
5
5
  SHA512:
6
- metadata.gz: 94d090d1af030277b3ccf60a818b899248eb54beb69e68069ad88c7c372800a58fed6d2dd17875ee6c4c3c02f731775353c455c2d1c4df0b60f864eb3e48509f
7
- data.tar.gz: b2f6a0cd83f323d42d326f91ed5360f1d7caa37bf63b60983eee82a6fcb3e41c61d969ba7c6a880f2fce354b8345d53d910de74e373643ae288dd6d3fa5d109c
6
+ metadata.gz: ca74fa199c1ab82bee2b6a89b21450d78060178b049f1847f0297b38da3e5e5f60a78a34e6d9b23fbfb9f6d2948796b07a5126b785c72d4abbc9a9f02cb88b0f
7
+ data.tar.gz: 34529f1726529856718d75b2082bef99f95677fcfb39bb220dd579cd9057ee07f97388276627f28f7123bd1a05c94f0fa2ef052c13c90b78213a549422033399
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-appstream/customizations'
43
43
  # @service
44
44
  module Aws::AppStream
45
45
 
46
- GEM_VERSION = '1.0.0.rc6'
46
+ GEM_VERSION = '1.0.0.rc7'
47
47
 
48
48
  end
@@ -200,12 +200,14 @@ module Aws::AppStream
200
200
  # The VPC configuration for the fleet.
201
201
  #
202
202
  # @option params [Integer] :max_user_duration_in_seconds
203
- # The maximum time up to which a streaming session can run.
203
+ # The maximum time for which a streaming session can run. The input can
204
+ # be any numeric value in seconds between 600 and 57600.
204
205
  #
205
206
  # @option params [Integer] :disconnect_timeout_in_seconds
206
207
  # The time after disconnection when a session is considered to have
207
208
  # ended. If a user who got disconnected reconnects within this timeout
208
- # interval, the user is connected back to his/her previous session.
209
+ # interval, the user is connected back to their previous session. The
210
+ # input can be any numeric value in seconds between 60 and 57600.
209
211
  #
210
212
  # @option params [String] :description
211
213
  # The description of the fleet.
@@ -214,7 +216,7 @@ module Aws::AppStream
214
216
  # The display name of the fleet.
215
217
  #
216
218
  # @option params [Boolean] :enable_default_internet_access
217
- # Enable/Disable default Internet access from fleet.
219
+ # Enables or disables default Internet access for the fleet.
218
220
  #
219
221
  # @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
220
222
  #
@@ -230,7 +232,8 @@ module Aws::AppStream
230
232
  # desired_instances: 1, # required
231
233
  # },
232
234
  # vpc_config: {
233
- # subnet_ids: ["String"], # required
235
+ # subnet_ids: ["String"],
236
+ # security_group_ids: ["String"],
234
237
  # },
235
238
  # max_user_duration_in_seconds: 1,
236
239
  # disconnect_timeout_in_seconds: 1,
@@ -256,6 +259,8 @@ module Aws::AppStream
256
259
  # resp.fleet.state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
257
260
  # resp.fleet.vpc_config.subnet_ids #=> Array
258
261
  # resp.fleet.vpc_config.subnet_ids[0] #=> String
262
+ # resp.fleet.vpc_config.security_group_ids #=> Array
263
+ # resp.fleet.vpc_config.security_group_ids[0] #=> String
259
264
  # resp.fleet.created_time #=> Time
260
265
  # resp.fleet.fleet_errors #=> Array
261
266
  # resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
@@ -282,6 +287,9 @@ module Aws::AppStream
282
287
  # @option params [String] :display_name
283
288
  # The name displayed to end users on the AppStream 2.0 portal.
284
289
  #
290
+ # @option params [Array<Types::StorageConnector>] :storage_connectors
291
+ # The storage connectors to be enabled for the stack.
292
+ #
285
293
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
286
294
  #
287
295
  # * {Types::CreateStackResult#stack #stack} => Types::Stack
@@ -292,6 +300,12 @@ module Aws::AppStream
292
300
  # name: "String", # required
293
301
  # description: "Description",
294
302
  # display_name: "DisplayName",
303
+ # storage_connectors: [
304
+ # {
305
+ # connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS
306
+ # resource_identifier: "ResourceIdentifier",
307
+ # },
308
+ # ],
295
309
  # })
296
310
  #
297
311
  # @example Response structure
@@ -301,6 +315,12 @@ module Aws::AppStream
301
315
  # resp.stack.description #=> String
302
316
  # resp.stack.display_name #=> String
303
317
  # resp.stack.created_time #=> Time
318
+ # resp.stack.storage_connectors #=> Array
319
+ # resp.stack.storage_connectors[0].connector_type #=> String, one of "HOMEFOLDERS"
320
+ # resp.stack.storage_connectors[0].resource_identifier #=> String
321
+ # resp.stack.stack_errors #=> Array
322
+ # resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
323
+ # resp.stack.stack_errors[0].error_message #=> String
304
324
  #
305
325
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStack AWS API Documentation
306
326
  #
@@ -329,8 +349,9 @@ module Aws::AppStream
329
349
  # starts.
330
350
  #
331
351
  # @option params [Integer] :validity
332
- # The validity duration of the URL in seconds. After this duration, the
333
- # URL returned by this operation becomes invalid.
352
+ # The duration up to which the URL returned by this action is valid. The
353
+ # input can be any numeric value in seconds between 1 and 604800
354
+ # seconds.
334
355
  #
335
356
  # @option params [String] :session_context
336
357
  # The sessionContext of the streaming URL.
@@ -452,6 +473,8 @@ module Aws::AppStream
452
473
  # resp.fleets[0].state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
453
474
  # resp.fleets[0].vpc_config.subnet_ids #=> Array
454
475
  # resp.fleets[0].vpc_config.subnet_ids[0] #=> String
476
+ # resp.fleets[0].vpc_config.security_group_ids #=> Array
477
+ # resp.fleets[0].vpc_config.security_group_ids[0] #=> String
455
478
  # resp.fleets[0].created_time #=> Time
456
479
  # resp.fleets[0].fleet_errors #=> Array
457
480
  # resp.fleets[0].fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
@@ -509,6 +532,7 @@ module Aws::AppStream
509
532
  # resp.images[0].applications[0].metadata #=> Hash
510
533
  # resp.images[0].applications[0].metadata["String"] #=> String
511
534
  # resp.images[0].created_time #=> Time
535
+ # resp.images[0].public_base_image_released_date #=> Time
512
536
  #
513
537
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
514
538
  #
@@ -524,7 +548,7 @@ module Aws::AppStream
524
548
  # user. Pass this value for the `nextToken` parameter in a subsequent
525
549
  # call to this operation to retrieve the next set of items. If an
526
550
  # authentication type is not provided, the operation defaults to users
527
- # authenticated using a streaming url.
551
+ # authenticated using a streaming URL.
528
552
  #
529
553
  # @option params [required, String] :stack_name
530
554
  # The name of the stack for which to list sessions.
@@ -546,9 +570,9 @@ module Aws::AppStream
546
570
  #
547
571
  # @option params [String] :authentication_type
548
572
  # The authentication method of the user. It can be `API` for a user
549
- # authenticated using a streaming url or `SAML` for a SAML federated
573
+ # authenticated using a streaming URL, or `SAML` for a SAML federated
550
574
  # user. If an authentication type is not provided, the operation
551
- # defaults to users authenticated using a streaming url.
575
+ # defaults to users authenticated using a streaming URL.
552
576
  #
553
577
  # @return [Types::DescribeSessionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
554
578
  #
@@ -563,7 +587,7 @@ module Aws::AppStream
563
587
  # user_id: "UserId",
564
588
  # next_token: "String",
565
589
  # limit: 1,
566
- # authentication_type: "API", # accepts API, SAML
590
+ # authentication_type: "API", # accepts API, SAML, USERPOOL
567
591
  # })
568
592
  #
569
593
  # @example Response structure
@@ -574,7 +598,7 @@ module Aws::AppStream
574
598
  # resp.sessions[0].stack_name #=> String
575
599
  # resp.sessions[0].fleet_name #=> String
576
600
  # resp.sessions[0].state #=> String, one of "ACTIVE", "PENDING", "EXPIRED"
577
- # resp.sessions[0].authentication_type #=> String, one of "API", "SAML"
601
+ # resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
578
602
  # resp.next_token #=> String
579
603
  #
580
604
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSessions AWS API Documentation
@@ -619,6 +643,12 @@ module Aws::AppStream
619
643
  # resp.stacks[0].description #=> String
620
644
  # resp.stacks[0].display_name #=> String
621
645
  # resp.stacks[0].created_time #=> Time
646
+ # resp.stacks[0].storage_connectors #=> Array
647
+ # resp.stacks[0].storage_connectors[0].connector_type #=> String, one of "HOMEFOLDERS"
648
+ # resp.stacks[0].storage_connectors[0].resource_identifier #=> String
649
+ # resp.stacks[0].stack_errors #=> Array
650
+ # resp.stacks[0].stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
651
+ # resp.stacks[0].stack_errors[0].error_message #=> String
622
652
  # resp.next_token #=> String
623
653
  #
624
654
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeStacks AWS API Documentation
@@ -817,12 +847,14 @@ module Aws::AppStream
817
847
  # The VPC configuration for the fleet.
818
848
  #
819
849
  # @option params [Integer] :max_user_duration_in_seconds
820
- # The maximum time during which a streaming session can run.
850
+ # The maximum time for which a streaming session can run. The input can
851
+ # be any numeric value in seconds between 600 and 57600.
821
852
  #
822
853
  # @option params [Integer] :disconnect_timeout_in_seconds
823
854
  # The time after disconnection when a session is considered to have
824
- # ended. When the user reconnects after a disconnection, the user is
825
- # connected to the same instance within this time interval.
855
+ # ended. If a user who got disconnected reconnects within this timeout
856
+ # interval, the user is connected back to their previous session. The
857
+ # input can be any numeric value in seconds between 60 and 57600.
826
858
  #
827
859
  # @option params [Boolean] :delete_vpc_config
828
860
  # Delete the VPC association for the specified fleet.
@@ -834,7 +866,10 @@ module Aws::AppStream
834
866
  # The name displayed to end users on the AppStream 2.0 portal.
835
867
  #
836
868
  # @option params [Boolean] :enable_default_internet_access
837
- # Enable/Disable default Internet access from fleet.
869
+ # Enables or disables default Internet access for the fleet.
870
+ #
871
+ # @option params [Array<String>] :attributes_to_delete
872
+ # Fleet attributes to be deleted.
838
873
  #
839
874
  # @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
840
875
  #
@@ -850,7 +885,8 @@ module Aws::AppStream
850
885
  # desired_instances: 1, # required
851
886
  # },
852
887
  # vpc_config: {
853
- # subnet_ids: ["String"], # required
888
+ # subnet_ids: ["String"],
889
+ # security_group_ids: ["String"],
854
890
  # },
855
891
  # max_user_duration_in_seconds: 1,
856
892
  # disconnect_timeout_in_seconds: 1,
@@ -858,6 +894,7 @@ module Aws::AppStream
858
894
  # description: "Description",
859
895
  # display_name: "DisplayName",
860
896
  # enable_default_internet_access: false,
897
+ # attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS
861
898
  # })
862
899
  #
863
900
  # @example Response structure
@@ -877,6 +914,8 @@ module Aws::AppStream
877
914
  # resp.fleet.state #=> String, one of "STARTING", "RUNNING", "STOPPING", "STOPPED"
878
915
  # resp.fleet.vpc_config.subnet_ids #=> Array
879
916
  # resp.fleet.vpc_config.subnet_ids[0] #=> String
917
+ # resp.fleet.vpc_config.security_group_ids #=> Array
918
+ # resp.fleet.vpc_config.security_group_ids[0] #=> String
880
919
  # resp.fleet.created_time #=> Time
881
920
  # resp.fleet.fleet_errors #=> Array
882
921
  # resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
@@ -903,6 +942,12 @@ module Aws::AppStream
903
942
  # @option params [required, String] :name
904
943
  # The name of the stack to update.
905
944
  #
945
+ # @option params [Array<Types::StorageConnector>] :storage_connectors
946
+ # The storage connectors to be enabled for the stack.
947
+ #
948
+ # @option params [Boolean] :delete_storage_connectors
949
+ # Remove all the storage connectors currently enabled for the stack.
950
+ #
906
951
  # @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
907
952
  #
908
953
  # * {Types::UpdateStackResult#stack #stack} => Types::Stack
@@ -913,6 +958,13 @@ module Aws::AppStream
913
958
  # display_name: "DisplayName",
914
959
  # description: "Description",
915
960
  # name: "String", # required
961
+ # storage_connectors: [
962
+ # {
963
+ # connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS
964
+ # resource_identifier: "ResourceIdentifier",
965
+ # },
966
+ # ],
967
+ # delete_storage_connectors: false,
916
968
  # })
917
969
  #
918
970
  # @example Response structure
@@ -922,6 +974,12 @@ module Aws::AppStream
922
974
  # resp.stack.description #=> String
923
975
  # resp.stack.display_name #=> String
924
976
  # resp.stack.created_time #=> Time
977
+ # resp.stack.storage_connectors #=> Array
978
+ # resp.stack.storage_connectors[0].connector_type #=> String, one of "HOMEFOLDERS"
979
+ # resp.stack.storage_connectors[0].resource_identifier #=> String
980
+ # resp.stack.stack_errors #=> Array
981
+ # resp.stack.stack_errors[0].error_code #=> String, one of "STORAGE_CONNECTOR_ERROR", "INTERNAL_SERVICE_ERROR"
982
+ # resp.stack.stack_errors[0].error_message #=> String
925
983
  #
926
984
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStack AWS API Documentation
927
985
  #
@@ -945,7 +1003,7 @@ module Aws::AppStream
945
1003
  params: params,
946
1004
  config: config)
947
1005
  context[:gem_name] = 'aws-sdk-appstream'
948
- context[:gem_version] = '1.0.0.rc6'
1006
+ context[:gem_version] = '1.0.0.rc7'
949
1007
  Seahorse::Client::Request.new(handlers, context)
950
1008
  end
951
1009
 
@@ -48,6 +48,8 @@ module Aws::AppStream
48
48
  ExpireSessionRequest = Shapes::StructureShape.new(name: 'ExpireSessionRequest')
49
49
  ExpireSessionResult = Shapes::StructureShape.new(name: 'ExpireSessionResult')
50
50
  Fleet = Shapes::StructureShape.new(name: 'Fleet')
51
+ FleetAttribute = Shapes::StringShape.new(name: 'FleetAttribute')
52
+ FleetAttributes = Shapes::ListShape.new(name: 'FleetAttributes')
51
53
  FleetError = Shapes::StructureShape.new(name: 'FleetError')
52
54
  FleetErrorCode = Shapes::StringShape.new(name: 'FleetErrorCode')
53
55
  FleetErrors = Shapes::ListShape.new(name: 'FleetErrors')
@@ -58,6 +60,7 @@ module Aws::AppStream
58
60
  ImageState = Shapes::StringShape.new(name: 'ImageState')
59
61
  ImageStateChangeReason = Shapes::StructureShape.new(name: 'ImageStateChangeReason')
60
62
  ImageStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageStateChangeReasonCode')
63
+ IncompatibleImageException = Shapes::StructureShape.new(name: 'IncompatibleImageException')
61
64
  Integer = Shapes::IntegerShape.new(name: 'Integer')
62
65
  InvalidParameterCombinationException = Shapes::StructureShape.new(name: 'InvalidParameterCombinationException')
63
66
  InvalidRoleException = Shapes::StructureShape.new(name: 'InvalidRoleException')
@@ -72,18 +75,26 @@ module Aws::AppStream
72
75
  OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
73
76
  PlatformType = Shapes::StringShape.new(name: 'PlatformType')
74
77
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
78
+ ResourceIdentifier = Shapes::StringShape.new(name: 'ResourceIdentifier')
75
79
  ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
76
80
  ResourceNotAvailableException = Shapes::StructureShape.new(name: 'ResourceNotAvailableException')
77
81
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
82
+ SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
78
83
  Session = Shapes::StructureShape.new(name: 'Session')
79
84
  SessionList = Shapes::ListShape.new(name: 'SessionList')
80
85
  SessionState = Shapes::StringShape.new(name: 'SessionState')
81
86
  Stack = Shapes::StructureShape.new(name: 'Stack')
87
+ StackError = Shapes::StructureShape.new(name: 'StackError')
88
+ StackErrorCode = Shapes::StringShape.new(name: 'StackErrorCode')
89
+ StackErrors = Shapes::ListShape.new(name: 'StackErrors')
82
90
  StackList = Shapes::ListShape.new(name: 'StackList')
83
91
  StartFleetRequest = Shapes::StructureShape.new(name: 'StartFleetRequest')
84
92
  StartFleetResult = Shapes::StructureShape.new(name: 'StartFleetResult')
85
93
  StopFleetRequest = Shapes::StructureShape.new(name: 'StopFleetRequest')
86
94
  StopFleetResult = Shapes::StructureShape.new(name: 'StopFleetResult')
95
+ StorageConnector = Shapes::StructureShape.new(name: 'StorageConnector')
96
+ StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
97
+ StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
87
98
  String = Shapes::StringShape.new(name: 'String')
88
99
  StringList = Shapes::ListShape.new(name: 'StringList')
89
100
  SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
@@ -140,6 +151,7 @@ module Aws::AppStream
140
151
  CreateStackRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
141
152
  CreateStackRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
142
153
  CreateStackRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
154
+ CreateStackRequest.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectorList, location_name: "StorageConnectors"))
143
155
  CreateStackRequest.struct_class = Types::CreateStackRequest
144
156
 
145
157
  CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
@@ -228,6 +240,8 @@ module Aws::AppStream
228
240
  Fleet.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
229
241
  Fleet.struct_class = Types::Fleet
230
242
 
243
+ FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
244
+
231
245
  FleetError.add_member(:error_code, Shapes::ShapeRef.new(shape: FleetErrorCode, location_name: "ErrorCode"))
232
246
  FleetError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
233
247
  FleetError.struct_class = Types::FleetError
@@ -248,6 +262,7 @@ module Aws::AppStream
248
262
  Image.add_member(:state_change_reason, Shapes::ShapeRef.new(shape: ImageStateChangeReason, location_name: "StateChangeReason"))
249
263
  Image.add_member(:applications, Shapes::ShapeRef.new(shape: Applications, location_name: "Applications"))
250
264
  Image.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
265
+ Image.add_member(:public_base_image_released_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "PublicBaseImageReleasedDate"))
251
266
  Image.struct_class = Types::Image
252
267
 
253
268
  ImageList.member = Shapes::ShapeRef.new(shape: Image)
@@ -275,6 +290,8 @@ module Aws::AppStream
275
290
  Metadata.key = Shapes::ShapeRef.new(shape: String)
276
291
  Metadata.value = Shapes::ShapeRef.new(shape: String)
277
292
 
293
+ SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String)
294
+
278
295
  Session.add_member(:id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Id"))
279
296
  Session.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, required: true, location_name: "UserId"))
280
297
  Session.add_member(:stack_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StackName"))
@@ -290,8 +307,16 @@ module Aws::AppStream
290
307
  Stack.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
291
308
  Stack.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
292
309
  Stack.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
310
+ Stack.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectorList, location_name: "StorageConnectors"))
311
+ Stack.add_member(:stack_errors, Shapes::ShapeRef.new(shape: StackErrors, location_name: "StackErrors"))
293
312
  Stack.struct_class = Types::Stack
294
313
 
314
+ StackError.add_member(:error_code, Shapes::ShapeRef.new(shape: StackErrorCode, location_name: "ErrorCode"))
315
+ StackError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
316
+ StackError.struct_class = Types::StackError
317
+
318
+ StackErrors.member = Shapes::ShapeRef.new(shape: StackError)
319
+
295
320
  StackList.member = Shapes::ShapeRef.new(shape: Stack)
296
321
 
297
322
  StartFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
@@ -304,6 +329,12 @@ module Aws::AppStream
304
329
 
305
330
  StopFleetResult.struct_class = Types::StopFleetResult
306
331
 
332
+ StorageConnector.add_member(:connector_type, Shapes::ShapeRef.new(shape: StorageConnectorType, required: true, location_name: "ConnectorType"))
333
+ StorageConnector.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "ResourceIdentifier"))
334
+ StorageConnector.struct_class = Types::StorageConnector
335
+
336
+ StorageConnectorList.member = Shapes::ShapeRef.new(shape: StorageConnector)
337
+
307
338
  StringList.member = Shapes::ShapeRef.new(shape: String)
308
339
 
309
340
  SubnetIdList.member = Shapes::ShapeRef.new(shape: String)
@@ -315,10 +346,11 @@ module Aws::AppStream
315
346
  UpdateFleetRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
316
347
  UpdateFleetRequest.add_member(:max_user_duration_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxUserDurationInSeconds"))
317
348
  UpdateFleetRequest.add_member(:disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "DisconnectTimeoutInSeconds"))
318
- UpdateFleetRequest.add_member(:delete_vpc_config, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeleteVpcConfig"))
349
+ UpdateFleetRequest.add_member(:delete_vpc_config, Shapes::ShapeRef.new(shape: Boolean, deprecated: true, location_name: "DeleteVpcConfig"))
319
350
  UpdateFleetRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
320
351
  UpdateFleetRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
321
352
  UpdateFleetRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
353
+ UpdateFleetRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: FleetAttributes, location_name: "AttributesToDelete"))
322
354
  UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
323
355
 
324
356
  UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
@@ -327,12 +359,15 @@ module Aws::AppStream
327
359
  UpdateStackRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
328
360
  UpdateStackRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
329
361
  UpdateStackRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
362
+ UpdateStackRequest.add_member(:storage_connectors, Shapes::ShapeRef.new(shape: StorageConnectorList, location_name: "StorageConnectors"))
363
+ UpdateStackRequest.add_member(:delete_storage_connectors, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeleteStorageConnectors"))
330
364
  UpdateStackRequest.struct_class = Types::UpdateStackRequest
331
365
 
332
366
  UpdateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
333
367
  UpdateStackResult.struct_class = Types::UpdateStackResult
334
368
 
335
- VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, required: true, location_name: "SubnetIds"))
369
+ VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "SubnetIds"))
370
+ VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "SecurityGroupIds"))
336
371
  VpcConfig.struct_class = Types::VpcConfig
337
372
 
338
373
 
@@ -360,6 +395,7 @@ module Aws::AppStream
360
395
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
361
396
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
362
397
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
398
+ o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
363
399
  end)
364
400
 
365
401
  api.add_operation(:create_fleet, Seahorse::Model::Operation.new.tap do |o|
@@ -385,6 +421,9 @@ module Aws::AppStream
385
421
  o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
386
422
  o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
387
423
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
424
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
425
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
426
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
388
427
  end)
389
428
 
390
429
  api.add_operation(:create_streaming_url, Seahorse::Model::Operation.new.tap do |o|
@@ -527,6 +566,7 @@ module Aws::AppStream
527
566
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
528
567
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
529
568
  o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
569
+ o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
530
570
  end)
531
571
 
532
572
  api.add_operation(:update_stack, Seahorse::Model::Operation.new.tap do |o|
@@ -537,6 +577,10 @@ module Aws::AppStream
537
577
  o.output = Shapes::ShapeRef.new(shape: UpdateStackResult)
538
578
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
539
579
  o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
580
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
581
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
582
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
583
+ o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
540
584
  end)
541
585
  end
542
586
 
@@ -36,7 +36,7 @@ module Aws::AppStream
36
36
  # @return [Boolean]
37
37
  #
38
38
  # @!attribute [rw] metadata
39
- # Additional attributes that describes the application.
39
+ # Additional attributes that describe the application.
40
40
  # @return [Hash<String,String>]
41
41
  #
42
42
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Application AWS API Documentation
@@ -143,7 +143,8 @@ module Aws::AppStream
143
143
  # desired_instances: 1, # required
144
144
  # },
145
145
  # vpc_config: {
146
- # subnet_ids: ["String"], # required
146
+ # subnet_ids: ["String"],
147
+ # security_group_ids: ["String"],
147
148
  # },
148
149
  # max_user_duration_in_seconds: 1,
149
150
  # disconnect_timeout_in_seconds: 1,
@@ -174,13 +175,15 @@ module Aws::AppStream
174
175
  # @return [Types::VpcConfig]
175
176
  #
176
177
  # @!attribute [rw] max_user_duration_in_seconds
177
- # The maximum time up to which a streaming session can run.
178
+ # The maximum time for which a streaming session can run. The input
179
+ # can be any numeric value in seconds between 600 and 57600.
178
180
  # @return [Integer]
179
181
  #
180
182
  # @!attribute [rw] disconnect_timeout_in_seconds
181
183
  # The time after disconnection when a session is considered to have
182
184
  # ended. If a user who got disconnected reconnects within this timeout
183
- # interval, the user is connected back to his/her previous session.
185
+ # interval, the user is connected back to their previous session. The
186
+ # input can be any numeric value in seconds between 60 and 57600.
184
187
  # @return [Integer]
185
188
  #
186
189
  # @!attribute [rw] description
@@ -192,7 +195,7 @@ module Aws::AppStream
192
195
  # @return [String]
193
196
  #
194
197
  # @!attribute [rw] enable_default_internet_access
195
- # Enable/Disable default Internet access from fleet.
198
+ # Enables or disables default Internet access for the fleet.
196
199
  # @return [Boolean]
197
200
  #
198
201
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
@@ -229,6 +232,12 @@ module Aws::AppStream
229
232
  # name: "String", # required
230
233
  # description: "Description",
231
234
  # display_name: "DisplayName",
235
+ # storage_connectors: [
236
+ # {
237
+ # connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS
238
+ # resource_identifier: "ResourceIdentifier",
239
+ # },
240
+ # ],
232
241
  # }
233
242
  #
234
243
  # @!attribute [rw] name
@@ -243,12 +252,17 @@ module Aws::AppStream
243
252
  # The name displayed to end users on the AppStream 2.0 portal.
244
253
  # @return [String]
245
254
  #
255
+ # @!attribute [rw] storage_connectors
256
+ # The storage connectors to be enabled for the stack.
257
+ # @return [Array<Types::StorageConnector>]
258
+ #
246
259
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
247
260
  #
248
261
  class CreateStackRequest < Struct.new(
249
262
  :name,
250
263
  :description,
251
- :display_name)
264
+ :display_name,
265
+ :storage_connectors)
252
266
  include Aws::Structure
253
267
  end
254
268
 
@@ -293,8 +307,9 @@ module Aws::AppStream
293
307
  # @return [String]
294
308
  #
295
309
  # @!attribute [rw] validity
296
- # The validity duration of the URL in seconds. After this duration,
297
- # the URL returned by this operation becomes invalid.
310
+ # The duration up to which the URL returned by this action is valid.
311
+ # The input can be any numeric value in seconds between 1 and 604800
312
+ # seconds.
298
313
  # @return [Integer]
299
314
  #
300
315
  # @!attribute [rw] session_context
@@ -455,7 +470,7 @@ module Aws::AppStream
455
470
  # user_id: "UserId",
456
471
  # next_token: "String",
457
472
  # limit: 1,
458
- # authentication_type: "API", # accepts API, SAML
473
+ # authentication_type: "API", # accepts API, SAML, USERPOOL
459
474
  # }
460
475
  #
461
476
  # @!attribute [rw] stack_name
@@ -483,9 +498,9 @@ module Aws::AppStream
483
498
  #
484
499
  # @!attribute [rw] authentication_type
485
500
  # The authentication method of the user. It can be `API` for a user
486
- # authenticated using a streaming url or `SAML` for a SAML federated
501
+ # authenticated using a streaming URL, or `SAML` for a SAML federated
487
502
  # user. If an authentication type is not provided, the operation
488
- # defaults to users authenticated using a streaming url.
503
+ # defaults to users authenticated using a streaming URL.
489
504
  # @return [String]
490
505
  #
491
506
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSessionsRequest AWS API Documentation
@@ -642,14 +657,15 @@ module Aws::AppStream
642
657
  # @return [Types::ComputeCapacityStatus]
643
658
  #
644
659
  # @!attribute [rw] max_user_duration_in_seconds
645
- # The maximum time during which a streaming session can run.
660
+ # The maximum time for which a streaming session can run. The value
661
+ # can be any numeric value in seconds between 600 and 57600.
646
662
  # @return [Integer]
647
663
  #
648
664
  # @!attribute [rw] disconnect_timeout_in_seconds
649
665
  # The time after disconnection when a session is considered to have
650
- # ended. When a user reconnects after a disconnection, the user is
651
- # connected to the same session and instance within this time
652
- # interval.
666
+ # ended. If a user who got disconnected reconnects within this timeout
667
+ # interval, the user is connected back to their previous session. The
668
+ # input can be any numeric value in seconds between 60 and 57600.
653
669
  # @return [Integer]
654
670
  #
655
671
  # @!attribute [rw] state
@@ -669,8 +685,7 @@ module Aws::AppStream
669
685
  # @return [Array<Types::FleetError>]
670
686
  #
671
687
  # @!attribute [rw] enable_default_internet_access
672
- # Default Internet access from the fleet. True (Enabled), False
673
- # (Disabled).
688
+ # Whether default Internet access is enabled for the fleet.
674
689
  # @return [Boolean]
675
690
  #
676
691
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
@@ -742,7 +757,7 @@ module Aws::AppStream
742
757
  # @return [String]
743
758
  #
744
759
  # @!attribute [rw] image_builder_supported
745
- # Indicates whether an image builder can be launched from this image.
760
+ # Whether an image builder can be launched from this image.
746
761
  # @return [Boolean]
747
762
  #
748
763
  # @!attribute [rw] platform
@@ -765,6 +780,12 @@ module Aws::AppStream
765
780
  # The timestamp when the image was created.
766
781
  # @return [Time]
767
782
  #
783
+ # @!attribute [rw] public_base_image_released_date
784
+ # The AWS release date of the public base image. For private images,
785
+ # this date is the release date of the base image from which the image
786
+ # was created.
787
+ # @return [Time]
788
+ #
768
789
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
769
790
  #
770
791
  class Image < Struct.new(
@@ -779,7 +800,8 @@ module Aws::AppStream
779
800
  :description,
780
801
  :state_change_reason,
781
802
  :applications,
782
- :created_time)
803
+ :created_time,
804
+ :public_base_image_released_date)
783
805
  include Aws::Structure
784
806
  end
785
807
 
@@ -914,7 +936,7 @@ module Aws::AppStream
914
936
  # @!attribute [rw] authentication_type
915
937
  # The authentication method of the user for whom the session was
916
938
  # created. It can be `API` for a user authenticated using a streaming
917
- # url or `SAML` for a SAML federated user.
939
+ # URL or `SAML` for a SAML federated user.
918
940
  # @return [String]
919
941
  #
920
942
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Session AWS API Documentation
@@ -951,6 +973,14 @@ module Aws::AppStream
951
973
  # The timestamp when the stack was created.
952
974
  # @return [Time]
953
975
  #
976
+ # @!attribute [rw] storage_connectors
977
+ # The storage connectors to be enabled for the stack.
978
+ # @return [Array<Types::StorageConnector>]
979
+ #
980
+ # @!attribute [rw] stack_errors
981
+ # The list of errors associated with the stack.
982
+ # @return [Array<Types::StackError>]
983
+ #
954
984
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
955
985
  #
956
986
  class Stack < Struct.new(
@@ -958,7 +988,27 @@ module Aws::AppStream
958
988
  :name,
959
989
  :description,
960
990
  :display_name,
961
- :created_time)
991
+ :created_time,
992
+ :storage_connectors,
993
+ :stack_errors)
994
+ include Aws::Structure
995
+ end
996
+
997
+ # Contains the parameters for a stack error.
998
+ #
999
+ # @!attribute [rw] error_code
1000
+ # The error code of a stack error.
1001
+ # @return [String]
1002
+ #
1003
+ # @!attribute [rw] error_message
1004
+ # The error message of a stack error.
1005
+ # @return [String]
1006
+ #
1007
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StackError AWS API Documentation
1008
+ #
1009
+ class StackError < Struct.new(
1010
+ :error_code,
1011
+ :error_message)
962
1012
  include Aws::Structure
963
1013
  end
964
1014
 
@@ -1006,6 +1056,33 @@ module Aws::AppStream
1006
1056
  #
1007
1057
  class StopFleetResult < Aws::EmptyStructure; end
1008
1058
 
1059
+ # Contains the parameters for a storage connector.
1060
+ #
1061
+ # @note When making an API call, you may pass StorageConnector
1062
+ # data as a hash:
1063
+ #
1064
+ # {
1065
+ # connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS
1066
+ # resource_identifier: "ResourceIdentifier",
1067
+ # }
1068
+ #
1069
+ # @!attribute [rw] connector_type
1070
+ # The type of storage connector. The possible values include:
1071
+ # HOMEFOLDERS.
1072
+ # @return [String]
1073
+ #
1074
+ # @!attribute [rw] resource_identifier
1075
+ # The ARN associated with the storage connector.
1076
+ # @return [String]
1077
+ #
1078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StorageConnector AWS API Documentation
1079
+ #
1080
+ class StorageConnector < Struct.new(
1081
+ :connector_type,
1082
+ :resource_identifier)
1083
+ include Aws::Structure
1084
+ end
1085
+
1009
1086
  # @note When making an API call, you may pass UpdateFleetRequest
1010
1087
  # data as a hash:
1011
1088
  #
@@ -1017,7 +1094,8 @@ module Aws::AppStream
1017
1094
  # desired_instances: 1, # required
1018
1095
  # },
1019
1096
  # vpc_config: {
1020
- # subnet_ids: ["String"], # required
1097
+ # subnet_ids: ["String"],
1098
+ # security_group_ids: ["String"],
1021
1099
  # },
1022
1100
  # max_user_duration_in_seconds: 1,
1023
1101
  # disconnect_timeout_in_seconds: 1,
@@ -1025,6 +1103,7 @@ module Aws::AppStream
1025
1103
  # description: "Description",
1026
1104
  # display_name: "DisplayName",
1027
1105
  # enable_default_internet_access: false,
1106
+ # attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS
1028
1107
  # }
1029
1108
  #
1030
1109
  # @!attribute [rw] image_name
@@ -1049,13 +1128,15 @@ module Aws::AppStream
1049
1128
  # @return [Types::VpcConfig]
1050
1129
  #
1051
1130
  # @!attribute [rw] max_user_duration_in_seconds
1052
- # The maximum time during which a streaming session can run.
1131
+ # The maximum time for which a streaming session can run. The input
1132
+ # can be any numeric value in seconds between 600 and 57600.
1053
1133
  # @return [Integer]
1054
1134
  #
1055
1135
  # @!attribute [rw] disconnect_timeout_in_seconds
1056
1136
  # The time after disconnection when a session is considered to have
1057
- # ended. When the user reconnects after a disconnection, the user is
1058
- # connected to the same instance within this time interval.
1137
+ # ended. If a user who got disconnected reconnects within this timeout
1138
+ # interval, the user is connected back to their previous session. The
1139
+ # input can be any numeric value in seconds between 60 and 57600.
1059
1140
  # @return [Integer]
1060
1141
  #
1061
1142
  # @!attribute [rw] delete_vpc_config
@@ -1071,9 +1152,13 @@ module Aws::AppStream
1071
1152
  # @return [String]
1072
1153
  #
1073
1154
  # @!attribute [rw] enable_default_internet_access
1074
- # Enable/Disable default Internet access from fleet.
1155
+ # Enables or disables default Internet access for the fleet.
1075
1156
  # @return [Boolean]
1076
1157
  #
1158
+ # @!attribute [rw] attributes_to_delete
1159
+ # Fleet attributes to be deleted.
1160
+ # @return [Array<String>]
1161
+ #
1077
1162
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
1078
1163
  #
1079
1164
  class UpdateFleetRequest < Struct.new(
@@ -1087,7 +1172,8 @@ module Aws::AppStream
1087
1172
  :delete_vpc_config,
1088
1173
  :description,
1089
1174
  :display_name,
1090
- :enable_default_internet_access)
1175
+ :enable_default_internet_access,
1176
+ :attributes_to_delete)
1091
1177
  include Aws::Structure
1092
1178
  end
1093
1179
 
@@ -1109,6 +1195,13 @@ module Aws::AppStream
1109
1195
  # display_name: "DisplayName",
1110
1196
  # description: "Description",
1111
1197
  # name: "String", # required
1198
+ # storage_connectors: [
1199
+ # {
1200
+ # connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS
1201
+ # resource_identifier: "ResourceIdentifier",
1202
+ # },
1203
+ # ],
1204
+ # delete_storage_connectors: false,
1112
1205
  # }
1113
1206
  #
1114
1207
  # @!attribute [rw] display_name
@@ -1123,12 +1216,22 @@ module Aws::AppStream
1123
1216
  # The name of the stack to update.
1124
1217
  # @return [String]
1125
1218
  #
1219
+ # @!attribute [rw] storage_connectors
1220
+ # The storage connectors to be enabled for the stack.
1221
+ # @return [Array<Types::StorageConnector>]
1222
+ #
1223
+ # @!attribute [rw] delete_storage_connectors
1224
+ # Remove all the storage connectors currently enabled for the stack.
1225
+ # @return [Boolean]
1226
+ #
1126
1227
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
1127
1228
  #
1128
1229
  class UpdateStackRequest < Struct.new(
1129
1230
  :display_name,
1130
1231
  :description,
1131
- :name)
1232
+ :name,
1233
+ :storage_connectors,
1234
+ :delete_storage_connectors)
1132
1235
  include Aws::Structure
1133
1236
  end
1134
1237
 
@@ -1149,7 +1252,8 @@ module Aws::AppStream
1149
1252
  # data as a hash:
1150
1253
  #
1151
1254
  # {
1152
- # subnet_ids: ["String"], # required
1255
+ # subnet_ids: ["String"],
1256
+ # security_group_ids: ["String"],
1153
1257
  # }
1154
1258
  #
1155
1259
  # @!attribute [rw] subnet_ids
@@ -1157,10 +1261,15 @@ module Aws::AppStream
1157
1261
  # the fleet instance.
1158
1262
  # @return [Array<String>]
1159
1263
  #
1264
+ # @!attribute [rw] security_group_ids
1265
+ # Security groups associated with the fleet.
1266
+ # @return [Array<String>]
1267
+ #
1160
1268
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/VpcConfig AWS API Documentation
1161
1269
  #
1162
1270
  class VpcConfig < Struct.new(
1163
- :subnet_ids)
1271
+ :subnet_ids,
1272
+ :security_group_ids)
1164
1273
  include Aws::Structure
1165
1274
  end
1166
1275
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc6
4
+ version: 1.0.0.rc7
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: 2017-05-23 00:00:00.000000000 Z
11
+ date: 2017-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.rc12
19
+ version: 3.0.0.rc13
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0.rc12
26
+ version: 3.0.0.rc13
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement