aws-sdk-appstream 1.1.0 → 1.2.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
  SHA1:
3
- metadata.gz: 834355450d2a09b3b003a3f2cc1f9f82b4f54301
4
- data.tar.gz: c61b19c8a36958df43cfae8e2bd6b59d46ff7997
3
+ metadata.gz: c89cde9f04ba09450a15453c0e813daa76307004
4
+ data.tar.gz: b673b5616b1d4b5dbb96d3c7daed004a533bfb6d
5
5
  SHA512:
6
- metadata.gz: d34b34bfde35503186804e669a39ba731f42d6d4184438cd9ebf42a791053e1bc8035f60b38f7b99e5d537168ed0d27d3a8e4d14086b28a6ec3cff49fec1a4d4
7
- data.tar.gz: b5cbfef8bf0795a61585741bd0ac64414f9d0b7f05efad1e2603e441ecd267efd159874ce4640ade69b10f7191e319bbaae5ee86fc2b6ed0a4745b74470b908b
6
+ metadata.gz: fa27a54dbc5a01570e2362f2595a45499a27a24a14961ecda903eeba53a8544514d613cca072912f016915574f6bcdc579a3cb71236ad1c8d974c750b04dd79d
7
+ data.tar.gz: 00896237c4b93ca24fd16163af987e8593503e945b622670928e4d0b4e399b9dd3148450d01860a8090bc343fe8efdd3625a577012acbed27f6a3995d73771a9
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-appstream/customizations'
43
43
  # @service
44
44
  module Aws::AppStream
45
45
 
46
- GEM_VERSION = '1.1.0'
46
+ GEM_VERSION = '1.2.0'
47
47
 
48
48
  end
@@ -155,13 +155,13 @@ module Aws::AppStream
155
155
 
156
156
  # @!group API Operations
157
157
 
158
- # Associate a fleet to a stack.
158
+ # Associates the specified fleet with the specified stack.
159
159
  #
160
160
  # @option params [required, String] :fleet_name
161
- # The name of the fleet to associate.
161
+ # The name of the fleet.
162
162
  #
163
163
  # @option params [required, String] :stack_name
164
- # The name of the stack to which the fleet is associated.
164
+ # The name of the stack.
165
165
  #
166
166
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
167
167
  #
@@ -181,19 +181,19 @@ module Aws::AppStream
181
181
  req.send_request(options)
182
182
  end
183
183
 
184
- # Creates a directory configuration with the given parameters.
184
+ # Creates a directory configuration.
185
185
  #
186
186
  # @option params [required, String] :directory_name
187
- # The fully qualified name of the directory, such as corp.example.com
187
+ # The fully qualified name of the directory (for example,
188
+ # corp.example.com).
188
189
  #
189
190
  # @option params [required, Array<String>] :organizational_unit_distinguished_names
190
- # The list of the distinguished names of organizational units to place
191
- # computer accounts in.
191
+ # The distinguished names of the organizational units for computer
192
+ # accounts.
192
193
  #
193
194
  # @option params [required, Types::ServiceAccountCredentials] :service_account_credentials
194
- # The *AccountName* and *AccountPassword* values for the service
195
- # account, which are used by the streaming instance to connect to the
196
- # directory.
195
+ # The credentials for the service account used by the streaming instance
196
+ # to connect to the directory.
197
197
  #
198
198
  # @return [Types::CreateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
199
199
  #
@@ -228,13 +228,13 @@ module Aws::AppStream
228
228
  req.send_request(options)
229
229
  end
230
230
 
231
- # Creates a new fleet.
231
+ # Creates a fleet.
232
232
  #
233
233
  # @option params [required, String] :name
234
- # A unique identifier for the fleet.
234
+ # A unique name for the fleet.
235
235
  #
236
236
  # @option params [required, String] :image_name
237
- # Unique name of the image used by the fleet.
237
+ # The name of the image used by the fleet.
238
238
  #
239
239
  # @option params [required, String] :instance_type
240
240
  # The instance type to use when launching fleet instances. The following
@@ -283,34 +283,32 @@ module Aws::AppStream
283
283
  # @option params [String] :fleet_type
284
284
  #
285
285
  # @option params [required, Types::ComputeCapacity] :compute_capacity
286
- # The parameters for the capacity allocated to the fleet.
286
+ # The desired capacity for the fleet.
287
287
  #
288
288
  # @option params [Types::VpcConfig] :vpc_config
289
289
  # The VPC configuration for the fleet.
290
290
  #
291
291
  # @option params [Integer] :max_user_duration_in_seconds
292
- # The maximum time for which a streaming session can run. The input can
293
- # be any numeric value in seconds between 600 and 57600.
292
+ # The maximum time that a streaming session can run, in seconds. Specify
293
+ # a value between 600 and 57600.
294
294
  #
295
295
  # @option params [Integer] :disconnect_timeout_in_seconds
296
296
  # The time after disconnection when a session is considered to have
297
- # ended. If a user who got disconnected reconnects within this timeout
298
- # interval, the user is connected back to their previous session. The
299
- # input can be any numeric value in seconds between 60 and 57600.
297
+ # ended, in seconds. If a user who was disconnected reconnects within
298
+ # this time interval, the user is connected to their previous session.
299
+ # Specify a value between 60 and 57600.
300
300
  #
301
301
  # @option params [String] :description
302
- # The description of the fleet.
302
+ # The description displayed to end users.
303
303
  #
304
304
  # @option params [String] :display_name
305
- # The display name of the fleet.
305
+ # The fleet name displayed to end users.
306
306
  #
307
307
  # @option params [Boolean] :enable_default_internet_access
308
308
  # Enables or disables default internet access for the fleet.
309
309
  #
310
310
  # @option params [Types::DomainJoinInfo] :domain_join_info
311
- # The *DirectoryName* and *OrganizationalUnitDistinguishedName* values,
312
- # which are used to join domains for the AppStream 2.0 streaming
313
- # instances.
311
+ # The information needed for streaming instances to join a domain.
314
312
  #
315
313
  # @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
316
314
  #
@@ -378,19 +376,125 @@ module Aws::AppStream
378
376
  req.send_request(options)
379
377
  end
380
378
 
381
- # Create a new stack.
379
+ # @option params [required, String] :name
380
+ #
381
+ # @option params [required, String] :image_name
382
+ #
383
+ # @option params [required, String] :instance_type
384
+ #
385
+ # @option params [String] :description
386
+ #
387
+ # @option params [String] :display_name
388
+ #
389
+ # @option params [Types::VpcConfig] :vpc_config
390
+ # Describes VPC configuration information.
391
+ #
392
+ # @option params [Boolean] :enable_default_internet_access
393
+ #
394
+ # @option params [Types::DomainJoinInfo] :domain_join_info
395
+ # Contains the information needed for streaming instances to join a
396
+ # domain.
397
+ #
398
+ # @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
399
+ #
400
+ # * {Types::CreateImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
401
+ #
402
+ # @example Request syntax with placeholder values
403
+ #
404
+ # resp = client.create_image_builder({
405
+ # name: "Name", # required
406
+ # image_name: "String", # required
407
+ # instance_type: "String", # required
408
+ # description: "Description",
409
+ # display_name: "DisplayName",
410
+ # vpc_config: {
411
+ # subnet_ids: ["String"],
412
+ # security_group_ids: ["String"],
413
+ # },
414
+ # enable_default_internet_access: false,
415
+ # domain_join_info: {
416
+ # directory_name: "DirectoryName",
417
+ # organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
418
+ # },
419
+ # })
420
+ #
421
+ # @example Response structure
422
+ #
423
+ # resp.image_builder.name #=> String
424
+ # resp.image_builder.arn #=> String
425
+ # resp.image_builder.image_arn #=> String
426
+ # resp.image_builder.description #=> String
427
+ # resp.image_builder.display_name #=> String
428
+ # resp.image_builder.vpc_config.subnet_ids #=> Array
429
+ # resp.image_builder.vpc_config.subnet_ids[0] #=> String
430
+ # resp.image_builder.vpc_config.security_group_ids #=> Array
431
+ # resp.image_builder.vpc_config.security_group_ids[0] #=> String
432
+ # resp.image_builder.instance_type #=> String
433
+ # resp.image_builder.platform #=> String, one of "WINDOWS"
434
+ # resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
435
+ # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
436
+ # resp.image_builder.state_change_reason.message #=> String
437
+ # resp.image_builder.created_time #=> Time
438
+ # resp.image_builder.enable_default_internet_access #=> Boolean
439
+ # resp.image_builder.domain_join_info.directory_name #=> String
440
+ # resp.image_builder.domain_join_info.organizational_unit_distinguished_name #=> String
441
+ # resp.image_builder.image_builder_errors #=> Array
442
+ # resp.image_builder.image_builder_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", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
443
+ # resp.image_builder.image_builder_errors[0].error_message #=> String
444
+ # resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
445
+ #
446
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
447
+ #
448
+ # @overload create_image_builder(params = {})
449
+ # @param [Hash] params ({})
450
+ def create_image_builder(params = {}, options = {})
451
+ req = build_request(:create_image_builder, params)
452
+ req.send_request(options)
453
+ end
454
+
455
+ # @option params [required, String] :name
456
+ #
457
+ # @option params [Integer] :validity
458
+ #
459
+ # @return [Types::CreateImageBuilderStreamingURLResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
460
+ #
461
+ # * {Types::CreateImageBuilderStreamingURLResult#streaming_url #streaming_url} => String
462
+ # * {Types::CreateImageBuilderStreamingURLResult#expires #expires} => Time
463
+ #
464
+ # @example Request syntax with placeholder values
465
+ #
466
+ # resp = client.create_image_builder_streaming_url({
467
+ # name: "String", # required
468
+ # validity: 1,
469
+ # })
470
+ #
471
+ # @example Response structure
472
+ #
473
+ # resp.streaming_url #=> String
474
+ # resp.expires #=> Time
475
+ #
476
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderStreamingURL AWS API Documentation
477
+ #
478
+ # @overload create_image_builder_streaming_url(params = {})
479
+ # @param [Hash] params ({})
480
+ def create_image_builder_streaming_url(params = {}, options = {})
481
+ req = build_request(:create_image_builder_streaming_url, params)
482
+ req.send_request(options)
483
+ end
484
+
485
+ # Creates a stack.
382
486
  #
383
487
  # @option params [required, String] :name
384
- # The unique identifier for this stack.
488
+ # The name of the stack.
385
489
  #
386
490
  # @option params [String] :description
387
- # The description displayed to end users on the AppStream 2.0 portal.
491
+ # The description displayed to end users.
388
492
  #
389
493
  # @option params [String] :display_name
390
- # The name displayed to end users on the AppStream 2.0 portal.
494
+ # The stack name displayed to end users.
391
495
  #
392
496
  # @option params [Array<Types::StorageConnector>] :storage_connectors
393
- # The storage connectors to be enabled for the stack.
497
+ # The storage connectors to enable.
394
498
  #
395
499
  # @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
396
500
  #
@@ -433,30 +537,30 @@ module Aws::AppStream
433
537
  req.send_request(options)
434
538
  end
435
539
 
436
- # Creates a URL to start an AppStream 2.0 streaming session for a user.
437
- # By default, the URL is valid only for 1 minute from the time that it
540
+ # Creates a URL to start a streaming session for the specified user.
541
+ #
542
+ # By default, the URL is valid only for one minute from the time that it
438
543
  # is generated.
439
544
  #
440
545
  # @option params [required, String] :stack_name
441
- # The stack for which the URL is generated.
546
+ # The name of the stack.
442
547
  #
443
548
  # @option params [required, String] :fleet_name
444
- # The fleet for which the URL is generated.
549
+ # The name of the fleet.
445
550
  #
446
551
  # @option params [required, String] :user_id
447
- # A unique user ID for whom the URL is generated.
552
+ # The ID of the user.
448
553
  #
449
554
  # @option params [String] :application_id
450
555
  # The ID of the application that must be launched after the session
451
556
  # starts.
452
557
  #
453
558
  # @option params [Integer] :validity
454
- # The duration up to which the URL returned by this action is valid. The
455
- # input can be any numeric value in seconds between 1 and 604800
456
- # seconds.
559
+ # The time that the streaming URL will be valid, in seconds. Specify a
560
+ # value between 1 and 604800 seconds.
457
561
  #
458
562
  # @option params [String] :session_context
459
- # The sessionContext of the streaming URL.
563
+ # The session context of the streaming URL.
460
564
  #
461
565
  # @return [Types::CreateStreamingURLResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
462
566
  #
@@ -488,10 +592,10 @@ module Aws::AppStream
488
592
  req.send_request(options)
489
593
  end
490
594
 
491
- # Deletes the directory configuration with the given parameters.
595
+ # Deletes the specified directory configuration.
492
596
  #
493
597
  # @option params [required, String] :directory_name
494
- # The name of the directory configuration to be deleted.
598
+ # The name of the directory configuration.
495
599
  #
496
600
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
497
601
  #
@@ -510,10 +614,10 @@ module Aws::AppStream
510
614
  req.send_request(options)
511
615
  end
512
616
 
513
- # Deletes a fleet.
617
+ # Deletes the specified fleet.
514
618
  #
515
619
  # @option params [required, String] :name
516
- # The name of the fleet to be deleted.
620
+ # The name of the fleet.
517
621
  #
518
622
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
519
623
  #
@@ -532,12 +636,104 @@ module Aws::AppStream
532
636
  req.send_request(options)
533
637
  end
534
638
 
535
- # Deletes the stack. After this operation completes, the environment can
536
- # no longer be activated, and any reservations made for the stack are
537
- # released.
639
+ # @option params [required, String] :name
640
+ #
641
+ # @return [Types::DeleteImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
642
+ #
643
+ # * {Types::DeleteImageResult#image #image} => Types::Image
644
+ #
645
+ # @example Request syntax with placeholder values
646
+ #
647
+ # resp = client.delete_image({
648
+ # name: "Name", # required
649
+ # })
650
+ #
651
+ # @example Response structure
652
+ #
653
+ # resp.image.name #=> String
654
+ # resp.image.arn #=> String
655
+ # resp.image.base_image_arn #=> String
656
+ # resp.image.display_name #=> String
657
+ # resp.image.state #=> String, one of "PENDING", "AVAILABLE", "FAILED", "DELETING"
658
+ # resp.image.visibility #=> String, one of "PUBLIC", "PRIVATE"
659
+ # resp.image.image_builder_supported #=> Boolean
660
+ # resp.image.platform #=> String, one of "WINDOWS"
661
+ # resp.image.description #=> String
662
+ # resp.image.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_BUILDER_NOT_AVAILABLE"
663
+ # resp.image.state_change_reason.message #=> String
664
+ # resp.image.applications #=> Array
665
+ # resp.image.applications[0].name #=> String
666
+ # resp.image.applications[0].display_name #=> String
667
+ # resp.image.applications[0].icon_url #=> String
668
+ # resp.image.applications[0].launch_path #=> String
669
+ # resp.image.applications[0].launch_parameters #=> String
670
+ # resp.image.applications[0].enabled #=> Boolean
671
+ # resp.image.applications[0].metadata #=> Hash
672
+ # resp.image.applications[0].metadata["String"] #=> String
673
+ # resp.image.created_time #=> Time
674
+ # resp.image.public_base_image_released_date #=> Time
675
+ #
676
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
677
+ #
678
+ # @overload delete_image(params = {})
679
+ # @param [Hash] params ({})
680
+ def delete_image(params = {}, options = {})
681
+ req = build_request(:delete_image, params)
682
+ req.send_request(options)
683
+ end
684
+
685
+ # @option params [required, String] :name
686
+ #
687
+ # @return [Types::DeleteImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
688
+ #
689
+ # * {Types::DeleteImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
690
+ #
691
+ # @example Request syntax with placeholder values
692
+ #
693
+ # resp = client.delete_image_builder({
694
+ # name: "Name", # required
695
+ # })
696
+ #
697
+ # @example Response structure
698
+ #
699
+ # resp.image_builder.name #=> String
700
+ # resp.image_builder.arn #=> String
701
+ # resp.image_builder.image_arn #=> String
702
+ # resp.image_builder.description #=> String
703
+ # resp.image_builder.display_name #=> String
704
+ # resp.image_builder.vpc_config.subnet_ids #=> Array
705
+ # resp.image_builder.vpc_config.subnet_ids[0] #=> String
706
+ # resp.image_builder.vpc_config.security_group_ids #=> Array
707
+ # resp.image_builder.vpc_config.security_group_ids[0] #=> String
708
+ # resp.image_builder.instance_type #=> String
709
+ # resp.image_builder.platform #=> String, one of "WINDOWS"
710
+ # resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
711
+ # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
712
+ # resp.image_builder.state_change_reason.message #=> String
713
+ # resp.image_builder.created_time #=> Time
714
+ # resp.image_builder.enable_default_internet_access #=> Boolean
715
+ # resp.image_builder.domain_join_info.directory_name #=> String
716
+ # resp.image_builder.domain_join_info.organizational_unit_distinguished_name #=> String
717
+ # resp.image_builder.image_builder_errors #=> Array
718
+ # resp.image_builder.image_builder_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", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
719
+ # resp.image_builder.image_builder_errors[0].error_message #=> String
720
+ # resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
721
+ #
722
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
723
+ #
724
+ # @overload delete_image_builder(params = {})
725
+ # @param [Hash] params ({})
726
+ def delete_image_builder(params = {}, options = {})
727
+ req = build_request(:delete_image_builder, params)
728
+ req.send_request(options)
729
+ end
730
+
731
+ # Deletes the specified stack. After this operation completes, the
732
+ # environment can no longer be activated and any reservations made for
733
+ # the stack are released.
538
734
  #
539
735
  # @option params [required, String] :name
540
- # The name of the stack to delete.
736
+ # The name of the stack.
541
737
  #
542
738
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
543
739
  #
@@ -556,17 +752,17 @@ module Aws::AppStream
556
752
  req.send_request(options)
557
753
  end
558
754
 
559
- # Returns a list describing the specified directory configurations.
755
+ # Describes the specified directory configurations.
560
756
  #
561
757
  # @option params [Array<String>] :directory_names
562
- # A specific list of directory names.
758
+ # The directory names.
563
759
  #
564
760
  # @option params [Integer] :max_results
565
- # The size of each page of results.
761
+ # The maximum size of each page of results.
566
762
  #
567
763
  # @option params [String] :next_token
568
- # The DescribeDirectoryConfigsResult.NextToken from a previous call to
569
- # DescribeDirectoryConfigs. If this is the first call, pass null.
764
+ # The pagination token to use to retrieve the next page of results for
765
+ # this operation. If this value is null, it retrieves the first page.
570
766
  #
571
767
  # @return [Types::DescribeDirectoryConfigsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
572
768
  #
@@ -601,12 +797,10 @@ module Aws::AppStream
601
797
  req.send_request(options)
602
798
  end
603
799
 
604
- # If fleet names are provided, this operation describes the specified
605
- # fleets; otherwise, all the fleets in the account are described.
800
+ # Describes the specified fleets or all fleets in the account.
606
801
  #
607
802
  # @option params [Array<String>] :names
608
- # The fleet names to describe. Use null to describe all the fleets for
609
- # the AWS account.
803
+ # The names of the fleets to describe.
610
804
  #
611
805
  # @option params [String] :next_token
612
806
  # The pagination token to use to retrieve the next page of results for
@@ -663,12 +857,65 @@ module Aws::AppStream
663
857
  req.send_request(options)
664
858
  end
665
859
 
666
- # Describes the images. If a list of names is not provided, all images
667
- # in your account are returned. This operation does not return a
668
- # paginated result.
860
+ # @option params [Array<String>] :names
861
+ #
862
+ # @option params [Integer] :max_results
863
+ #
864
+ # @option params [String] :next_token
865
+ #
866
+ # @return [Types::DescribeImageBuildersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
867
+ #
868
+ # * {Types::DescribeImageBuildersResult#image_builders #image_builders} => Array&lt;Types::ImageBuilder&gt;
869
+ # * {Types::DescribeImageBuildersResult#next_token #next_token} => String
870
+ #
871
+ # @example Request syntax with placeholder values
872
+ #
873
+ # resp = client.describe_image_builders({
874
+ # names: ["String"],
875
+ # max_results: 1,
876
+ # next_token: "String",
877
+ # })
878
+ #
879
+ # @example Response structure
880
+ #
881
+ # resp.image_builders #=> Array
882
+ # resp.image_builders[0].name #=> String
883
+ # resp.image_builders[0].arn #=> String
884
+ # resp.image_builders[0].image_arn #=> String
885
+ # resp.image_builders[0].description #=> String
886
+ # resp.image_builders[0].display_name #=> String
887
+ # resp.image_builders[0].vpc_config.subnet_ids #=> Array
888
+ # resp.image_builders[0].vpc_config.subnet_ids[0] #=> String
889
+ # resp.image_builders[0].vpc_config.security_group_ids #=> Array
890
+ # resp.image_builders[0].vpc_config.security_group_ids[0] #=> String
891
+ # resp.image_builders[0].instance_type #=> String
892
+ # resp.image_builders[0].platform #=> String, one of "WINDOWS"
893
+ # resp.image_builders[0].state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
894
+ # resp.image_builders[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
895
+ # resp.image_builders[0].state_change_reason.message #=> String
896
+ # resp.image_builders[0].created_time #=> Time
897
+ # resp.image_builders[0].enable_default_internet_access #=> Boolean
898
+ # resp.image_builders[0].domain_join_info.directory_name #=> String
899
+ # resp.image_builders[0].domain_join_info.organizational_unit_distinguished_name #=> String
900
+ # resp.image_builders[0].image_builder_errors #=> Array
901
+ # resp.image_builders[0].image_builder_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", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
902
+ # resp.image_builders[0].image_builder_errors[0].error_message #=> String
903
+ # resp.image_builders[0].image_builder_errors[0].error_timestamp #=> Time
904
+ # resp.next_token #=> String
905
+ #
906
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
907
+ #
908
+ # @overload describe_image_builders(params = {})
909
+ # @param [Hash] params ({})
910
+ def describe_image_builders(params = {}, options = {})
911
+ req = build_request(:describe_image_builders, params)
912
+ req.send_request(options)
913
+ end
914
+
915
+ # Describes the specified images or all images in the account.
669
916
  #
670
917
  # @option params [Array<String>] :names
671
- # A specific list of images to describe.
918
+ # The names of the images to describe.
672
919
  #
673
920
  # @return [Types::DescribeImagesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
674
921
  #
@@ -715,22 +962,19 @@ module Aws::AppStream
715
962
  req.send_request(options)
716
963
  end
717
964
 
718
- # Describes the streaming sessions for a stack and a fleet. If a user ID
719
- # is provided, this operation returns streaming sessions for only that
720
- # user. To retrieve the next set of items, pass this value for the
721
- # `nextToken` parameter in a subsequent call to this operation. If an
722
- # authentication type is not provided, the operation defaults to users
723
- # authenticated using a streaming URL.
965
+ # Describes the streaming sessions for the specified stack and fleet. If
966
+ # a user ID is provided, only the streaming sessions for only that user
967
+ # are returned. If an authentication type is not provided, the default
968
+ # is to authenticate users using a streaming URL.
724
969
  #
725
970
  # @option params [required, String] :stack_name
726
- # The name of the stack for which to list sessions.
971
+ # The name of the stack.
727
972
  #
728
973
  # @option params [required, String] :fleet_name
729
- # The name of the fleet for which to list sessions.
974
+ # The name of the fleet.
730
975
  #
731
976
  # @option params [String] :user_id
732
- # The user for whom to list sessions. Use null to describe all the
733
- # sessions for the stack and fleet.
977
+ # The user ID.
734
978
  #
735
979
  # @option params [String] :next_token
736
980
  # The pagination token to use to retrieve the next page of results for
@@ -738,13 +982,12 @@ module Aws::AppStream
738
982
  #
739
983
  # @option params [Integer] :limit
740
984
  # The size of each page of results. The default value is 20 and the
741
- # maximum supported value is 50.
985
+ # maximum value is 50.
742
986
  #
743
987
  # @option params [String] :authentication_type
744
- # The authentication method of the user. It can be `API` for a user
745
- # authenticated using a streaming URL, or `SAML` for a SAML federated
746
- # user. If an authentication type is not provided, the operation
747
- # defaults to users authenticated using a streaming URL.
988
+ # The authentication method. Specify `API` for a user authenticated
989
+ # using a streaming URL or `SAML` for a SAML federated user. The default
990
+ # is to authenticate users using a streaming URL.
748
991
  #
749
992
  # @return [Types::DescribeSessionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
750
993
  #
@@ -782,14 +1025,10 @@ module Aws::AppStream
782
1025
  req.send_request(options)
783
1026
  end
784
1027
 
785
- # If stack names are not provided, this operation describes the
786
- # specified stacks; otherwise, all stacks in the account are described.
787
- # To retrieve the next set of items, pass the `nextToken` value in a
788
- # subsequent call to this operation.
1028
+ # Describes the specified stacks or all stacks in the account.
789
1029
  #
790
1030
  # @option params [Array<String>] :names
791
- # The stack names to describe. Use null to describe all the stacks for
792
- # the AWS account.
1031
+ # The names of the stacks to describe.
793
1032
  #
794
1033
  # @option params [String] :next_token
795
1034
  # The pagination token to use to retrieve the next page of results for
@@ -832,13 +1071,13 @@ module Aws::AppStream
832
1071
  req.send_request(options)
833
1072
  end
834
1073
 
835
- # Disassociates a fleet from a stack.
1074
+ # Disassociates the specified fleet from the specified stack.
836
1075
  #
837
1076
  # @option params [required, String] :fleet_name
838
- # The name of the fleet to disassociate.
1077
+ # The name of the fleet.
839
1078
  #
840
1079
  # @option params [required, String] :stack_name
841
- # The name of the stack with which the fleet is associated.
1080
+ # The name of the stack.
842
1081
  #
843
1082
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
844
1083
  #
@@ -858,10 +1097,10 @@ module Aws::AppStream
858
1097
  req.send_request(options)
859
1098
  end
860
1099
 
861
- # This operation immediately stops a streaming session.
1100
+ # Stops the specified streaming session.
862
1101
  #
863
1102
  # @option params [required, String] :session_id
864
- # The unique identifier of the streaming session to be stopped.
1103
+ # The ID of the streaming session.
865
1104
  #
866
1105
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
867
1106
  #
@@ -880,10 +1119,10 @@ module Aws::AppStream
880
1119
  req.send_request(options)
881
1120
  end
882
1121
 
883
- # Lists all fleets associated with the stack.
1122
+ # Lists the fleets associated with the specified stack.
884
1123
  #
885
1124
  # @option params [required, String] :stack_name
886
- # The name of the stack whose associated fleets are listed.
1125
+ # The name of the stack.
887
1126
  #
888
1127
  # @option params [String] :next_token
889
1128
  # The pagination token to use to retrieve the next page of results for
@@ -916,10 +1155,10 @@ module Aws::AppStream
916
1155
  req.send_request(options)
917
1156
  end
918
1157
 
919
- # Lists all stacks to which the specified fleet is associated.
1158
+ # Lists the stacks associated with the specified fleet.
920
1159
  #
921
1160
  # @option params [required, String] :fleet_name
922
- # The name of the fleet whose associated stacks are listed.
1161
+ # The name of the fleet.
923
1162
  #
924
1163
  # @option params [String] :next_token
925
1164
  # The pagination token to use to retrieve the next page of results for
@@ -952,10 +1191,10 @@ module Aws::AppStream
952
1191
  req.send_request(options)
953
1192
  end
954
1193
 
955
- # Starts a fleet.
1194
+ # Starts the specified fleet.
956
1195
  #
957
1196
  # @option params [required, String] :name
958
- # The name of the fleet to start.
1197
+ # The name of the fleet.
959
1198
  #
960
1199
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
961
1200
  #
@@ -974,10 +1213,56 @@ module Aws::AppStream
974
1213
  req.send_request(options)
975
1214
  end
976
1215
 
977
- # Stops a fleet.
1216
+ # @option params [required, String] :name
1217
+ #
1218
+ # @return [Types::StartImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1219
+ #
1220
+ # * {Types::StartImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
1221
+ #
1222
+ # @example Request syntax with placeholder values
1223
+ #
1224
+ # resp = client.start_image_builder({
1225
+ # name: "String", # required
1226
+ # })
1227
+ #
1228
+ # @example Response structure
1229
+ #
1230
+ # resp.image_builder.name #=> String
1231
+ # resp.image_builder.arn #=> String
1232
+ # resp.image_builder.image_arn #=> String
1233
+ # resp.image_builder.description #=> String
1234
+ # resp.image_builder.display_name #=> String
1235
+ # resp.image_builder.vpc_config.subnet_ids #=> Array
1236
+ # resp.image_builder.vpc_config.subnet_ids[0] #=> String
1237
+ # resp.image_builder.vpc_config.security_group_ids #=> Array
1238
+ # resp.image_builder.vpc_config.security_group_ids[0] #=> String
1239
+ # resp.image_builder.instance_type #=> String
1240
+ # resp.image_builder.platform #=> String, one of "WINDOWS"
1241
+ # resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
1242
+ # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
1243
+ # resp.image_builder.state_change_reason.message #=> String
1244
+ # resp.image_builder.created_time #=> Time
1245
+ # resp.image_builder.enable_default_internet_access #=> Boolean
1246
+ # resp.image_builder.domain_join_info.directory_name #=> String
1247
+ # resp.image_builder.domain_join_info.organizational_unit_distinguished_name #=> String
1248
+ # resp.image_builder.image_builder_errors #=> Array
1249
+ # resp.image_builder.image_builder_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", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
1250
+ # resp.image_builder.image_builder_errors[0].error_message #=> String
1251
+ # resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
1252
+ #
1253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
1254
+ #
1255
+ # @overload start_image_builder(params = {})
1256
+ # @param [Hash] params ({})
1257
+ def start_image_builder(params = {}, options = {})
1258
+ req = build_request(:start_image_builder, params)
1259
+ req.send_request(options)
1260
+ end
1261
+
1262
+ # Stops the specified fleet.
978
1263
  #
979
1264
  # @option params [required, String] :name
980
- # The name of the fleet to stop.
1265
+ # The name of the fleet.
981
1266
  #
982
1267
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
983
1268
  #
@@ -996,19 +1281,64 @@ module Aws::AppStream
996
1281
  req.send_request(options)
997
1282
  end
998
1283
 
999
- # Updates the directory configuration with the given parameters.
1284
+ # @option params [required, String] :name
1285
+ #
1286
+ # @return [Types::StopImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1287
+ #
1288
+ # * {Types::StopImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
1289
+ #
1290
+ # @example Request syntax with placeholder values
1291
+ #
1292
+ # resp = client.stop_image_builder({
1293
+ # name: "String", # required
1294
+ # })
1295
+ #
1296
+ # @example Response structure
1297
+ #
1298
+ # resp.image_builder.name #=> String
1299
+ # resp.image_builder.arn #=> String
1300
+ # resp.image_builder.image_arn #=> String
1301
+ # resp.image_builder.description #=> String
1302
+ # resp.image_builder.display_name #=> String
1303
+ # resp.image_builder.vpc_config.subnet_ids #=> Array
1304
+ # resp.image_builder.vpc_config.subnet_ids[0] #=> String
1305
+ # resp.image_builder.vpc_config.security_group_ids #=> Array
1306
+ # resp.image_builder.vpc_config.security_group_ids[0] #=> String
1307
+ # resp.image_builder.instance_type #=> String
1308
+ # resp.image_builder.platform #=> String, one of "WINDOWS"
1309
+ # resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
1310
+ # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
1311
+ # resp.image_builder.state_change_reason.message #=> String
1312
+ # resp.image_builder.created_time #=> Time
1313
+ # resp.image_builder.enable_default_internet_access #=> Boolean
1314
+ # resp.image_builder.domain_join_info.directory_name #=> String
1315
+ # resp.image_builder.domain_join_info.organizational_unit_distinguished_name #=> String
1316
+ # resp.image_builder.image_builder_errors #=> Array
1317
+ # resp.image_builder.image_builder_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", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
1318
+ # resp.image_builder.image_builder_errors[0].error_message #=> String
1319
+ # resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
1320
+ #
1321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
1322
+ #
1323
+ # @overload stop_image_builder(params = {})
1324
+ # @param [Hash] params ({})
1325
+ def stop_image_builder(params = {}, options = {})
1326
+ req = build_request(:stop_image_builder, params)
1327
+ req.send_request(options)
1328
+ end
1329
+
1330
+ # Updates the specified directory configuration.
1000
1331
  #
1001
1332
  # @option params [required, String] :directory_name
1002
- # The name of the existing directory configuration to be updated.
1333
+ # The name of the directory configuration.
1003
1334
  #
1004
1335
  # @option params [Array<String>] :organizational_unit_distinguished_names
1005
- # The list of the distinguished names of organizational units to place
1006
- # computer accounts in.
1336
+ # The distinguished names of the organizational units for computer
1337
+ # accounts.
1007
1338
  #
1008
1339
  # @option params [Types::ServiceAccountCredentials] :service_account_credentials
1009
- # The *AccountName* and *AccountPassword* values for the service
1010
- # account, which are used by the streaming instance to connect to the
1011
- # directory
1340
+ # The credentials for the service account used by the streaming instance
1341
+ # to connect to the directory.
1012
1342
  #
1013
1343
  # @return [Types::UpdateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1014
1344
  #
@@ -1043,17 +1373,18 @@ module Aws::AppStream
1043
1373
  req.send_request(options)
1044
1374
  end
1045
1375
 
1046
- # Updates an existing fleet. All the attributes except the fleet name
1047
- # can be updated in the **STOPPED** state. When a fleet is in the
1048
- # **RUNNING** state, only `DisplayName` and `ComputeCapacity` can be
1049
- # updated. A fleet cannot be updated in a status of **STARTING** or
1050
- # **STOPPING**.
1376
+ # Updates the specified fleet.
1377
+ #
1378
+ # If the fleet is in the `STOPPED` state, you can update any attribute
1379
+ # except the fleet name. If the fleet is in the `RUNNING` state, you can
1380
+ # update the `DisplayName` and `ComputeCapacity` attributes. If the
1381
+ # fleet is in the `STARTING` or `STOPPING` state, you can't update it.
1051
1382
  #
1052
1383
  # @option params [String] :image_name
1053
- # The image name from which a fleet is created.
1384
+ # The name of the image used by the fleet.
1054
1385
  #
1055
1386
  # @option params [required, String] :name
1056
- # The name of the fleet.
1387
+ # A unique name for the fleet.
1057
1388
  #
1058
1389
  # @option params [String] :instance_type
1059
1390
  # The instance type to use when launching fleet instances. The following
@@ -1100,40 +1431,38 @@ module Aws::AppStream
1100
1431
  # * stream.graphics-pro.16xlarge
1101
1432
  #
1102
1433
  # @option params [Types::ComputeCapacity] :compute_capacity
1103
- # The parameters for the capacity allocated to the fleet.
1434
+ # The desired capacity for the fleet.
1104
1435
  #
1105
1436
  # @option params [Types::VpcConfig] :vpc_config
1106
1437
  # The VPC configuration for the fleet.
1107
1438
  #
1108
1439
  # @option params [Integer] :max_user_duration_in_seconds
1109
- # The maximum time for which a streaming session can run. The input can
1110
- # be any numeric value in seconds between 600 and 57600.
1440
+ # The maximum time that a streaming session can run, in seconds. Specify
1441
+ # a value between 600 and 57600.
1111
1442
  #
1112
1443
  # @option params [Integer] :disconnect_timeout_in_seconds
1113
1444
  # The time after disconnection when a session is considered to have
1114
- # ended. If a user who got disconnected reconnects within this timeout
1115
- # interval, the user is connected back to their previous session. The
1116
- # input can be any numeric value in seconds between 60 and 57600.
1445
+ # ended, in seconds. If a user who was disconnected reconnects within
1446
+ # this time interval, the user is connected to their previous session.
1447
+ # Specify a value between 60 and 57600.
1117
1448
  #
1118
1449
  # @option params [Boolean] :delete_vpc_config
1119
- # Delete the VPC association for the specified fleet.
1450
+ # Deletes the VPC association for the specified fleet.
1120
1451
  #
1121
1452
  # @option params [String] :description
1122
- # The description displayed to end users on the AppStream 2.0 portal.
1453
+ # The description displayed to end users.
1123
1454
  #
1124
1455
  # @option params [String] :display_name
1125
- # The name displayed to end users on the AppStream 2.0 portal.
1456
+ # The fleet name displayed to end users.
1126
1457
  #
1127
1458
  # @option params [Boolean] :enable_default_internet_access
1128
1459
  # Enables or disables default internet access for the fleet.
1129
1460
  #
1130
1461
  # @option params [Types::DomainJoinInfo] :domain_join_info
1131
- # The *DirectoryName* and *OrganizationalUnitDistinguishedName* values,
1132
- # which are used to join domains for the AppStream 2.0 streaming
1133
- # instances.
1462
+ # The information needed for streaming instances to join a domain.
1134
1463
  #
1135
1464
  # @option params [Array<String>] :attributes_to_delete
1136
- # Fleet attributes to be deleted.
1465
+ # The fleet attributes to delete.
1137
1466
  #
1138
1467
  # @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1139
1468
  #
@@ -1202,22 +1531,22 @@ module Aws::AppStream
1202
1531
  req.send_request(options)
1203
1532
  end
1204
1533
 
1205
- # Updates the specified fields in the stack with the specified name.
1534
+ # Updates the specified stack.
1206
1535
  #
1207
1536
  # @option params [String] :display_name
1208
- # The name displayed to end users on the AppStream 2.0 portal.
1537
+ # The stack name displayed to end users.
1209
1538
  #
1210
1539
  # @option params [String] :description
1211
- # The description displayed to end users on the AppStream 2.0 portal.
1540
+ # The description displayed to end users.
1212
1541
  #
1213
1542
  # @option params [required, String] :name
1214
- # The name of the stack to update.
1543
+ # The name of the stack.
1215
1544
  #
1216
1545
  # @option params [Array<Types::StorageConnector>] :storage_connectors
1217
- # The storage connectors to be enabled for the stack.
1546
+ # The storage connectors to enable.
1218
1547
  #
1219
1548
  # @option params [Boolean] :delete_storage_connectors
1220
- # Remove all the storage connectors currently enabled for the stack.
1549
+ # Deletes the storage connectors currently enabled for the stack.
1221
1550
  #
1222
1551
  # @return [Types::UpdateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1223
1552
  #
@@ -1274,7 +1603,7 @@ module Aws::AppStream
1274
1603
  params: params,
1275
1604
  config: config)
1276
1605
  context[:gem_name] = 'aws-sdk-appstream'
1277
- context[:gem_version] = '1.1.0'
1606
+ context[:gem_version] = '1.2.0'
1278
1607
  Seahorse::Client::Request.new(handlers, context)
1279
1608
  end
1280
1609