aws-sdk-appstream 1.67.0 → 1.68.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f7f10f7b03e0c2776ebdd4a67681c9c46b97c45f27afbe10719e2e357007e06
4
- data.tar.gz: 5ee38a75e48978ae2e673a7392edcfe50304cd2b6e61faae9ad070d6a1c1908c
3
+ metadata.gz: 8bb1ca00eb2ec143caf5c85954990cdaa5dbfecb475a5a7175888da11e2a2071
4
+ data.tar.gz: ecd57a38a5126c94f309dbb753ef480114e7ef05c4eb6f5e4116020720d4e872
5
5
  SHA512:
6
- metadata.gz: a84ffe7a90eb821c4bf4c7f79ca88bf08de780a230ff406aff50d8e6b8cb702628315e35f4fc370909b81cf0b48210fe2870dd6dc016a318fdfb1b7140221896
7
- data.tar.gz: 67265670dadde954fc2aa9c28ec64ec88807bc5abd4a1994738cc0efd29b6316bb2881154e325bbe19126f43bc4099c8fc09e150d81e3788e3508e4425ed75ba
6
+ metadata.gz: 4a09a3fdd921c1725cd18c81ce021dff1155acb66b059632cf3b836a0f0e34bd78375e7452d9e7c4540a37e107f08f4526a019de2b26678548ef2c8cf7a3c561
7
+ data.tar.gz: 4ff28979bcc76c618b60fcc18030a88a139e3c9b7bf5855e8d0425d431f4bd0ff064ba04c0594f7942d9ccf03239aa4ec4bb11f84d99ba2d1218ae9b37b5fa73
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.0 (2022-10-28)
5
+ ------------------
6
+
7
+ * Feature - This release includes CertificateBasedAuthProperties in CreateDirectoryConfig and UpdateDirectoryConfig.
8
+
4
9
  1.67.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -486,7 +486,7 @@ module Aws::AppStream
486
486
  # {
487
487
  # stack_name: "String", # required
488
488
  # user_name: "Username", # required
489
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
489
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
490
490
  # send_email_notification: false,
491
491
  # },
492
492
  # ],
@@ -497,7 +497,7 @@ module Aws::AppStream
497
497
  # resp.errors #=> Array
498
498
  # resp.errors[0].user_stack_association.stack_name #=> String
499
499
  # resp.errors[0].user_stack_association.user_name #=> String
500
- # resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
500
+ # resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
501
501
  # resp.errors[0].user_stack_association.send_email_notification #=> Boolean
502
502
  # resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
503
503
  # resp.errors[0].error_message #=> String
@@ -527,7 +527,7 @@ module Aws::AppStream
527
527
  # {
528
528
  # stack_name: "String", # required
529
529
  # user_name: "Username", # required
530
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
530
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
531
531
  # send_email_notification: false,
532
532
  # },
533
533
  # ],
@@ -538,7 +538,7 @@ module Aws::AppStream
538
538
  # resp.errors #=> Array
539
539
  # resp.errors[0].user_stack_association.stack_name #=> String
540
540
  # resp.errors[0].user_stack_association.user_name #=> String
541
- # resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
541
+ # resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
542
542
  # resp.errors[0].user_stack_association.send_email_notification #=> Boolean
543
543
  # resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
544
544
  # resp.errors[0].error_message #=> String
@@ -799,6 +799,18 @@ module Aws::AppStream
799
799
  # The credentials for the service account used by the fleet or image
800
800
  # builder to connect to the directory.
801
801
  #
802
+ # @option params [Types::CertificateBasedAuthProperties] :certificate_based_auth_properties
803
+ # The certificate-based authentication properties used to authenticate
804
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
805
+ # domain-joined streaming instances. Fallback is turned on by default
806
+ # when certificate-based authentication is **Enabled** . Fallback allows
807
+ # users to log in using their AD domain password if certificate-based
808
+ # authentication is unsuccessful, or to unlock a desktop lock screen.
809
+ # **Enabled\_no\_directory\_login\_fallback** enables certificate-based
810
+ # authentication, but does not allow users to log in using their AD
811
+ # domain password. Users will be disconnected to re-authenticate using
812
+ # certificates.
813
+ #
802
814
  # @return [Types::CreateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
803
815
  #
804
816
  # * {Types::CreateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
@@ -812,6 +824,10 @@ module Aws::AppStream
812
824
  # account_name: "AccountName", # required
813
825
  # account_password: "AccountPassword", # required
814
826
  # },
827
+ # certificate_based_auth_properties: {
828
+ # status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
829
+ # certificate_authority_arn: "Arn",
830
+ # },
815
831
  # })
816
832
  #
817
833
  # @example Response structure
@@ -822,6 +838,8 @@ module Aws::AppStream
822
838
  # resp.directory_config.service_account_credentials.account_name #=> String
823
839
  # resp.directory_config.service_account_credentials.account_password #=> String
824
840
  # resp.directory_config.created_time #=> Time
841
+ # resp.directory_config.certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
842
+ # resp.directory_config.certificate_based_auth_properties.certificate_authority_arn #=> String
825
843
  #
826
844
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfig AWS API Documentation
827
845
  #
@@ -895,8 +913,8 @@ module Aws::AppStream
895
913
  req.send_request(options)
896
914
  end
897
915
 
898
- # Creates a fleet. A fleet consists of streaming instances that run a
899
- # specified image when using Always-On or On-Demand.
916
+ # Creates a fleet. A fleet consists of streaming instances that your
917
+ # users access for their applications and desktops.
900
918
  #
901
919
  # @option params [required, String] :name
902
920
  # A unique name for the fleet.
@@ -917,6 +935,10 @@ module Aws::AppStream
917
935
  #
918
936
  # * stream.standard.large
919
937
  #
938
+ # * stream.standard.xlarge
939
+ #
940
+ # * stream.standard.2xlarge
941
+ #
920
942
  # * stream.compute.large
921
943
  #
922
944
  # * stream.compute.xlarge
@@ -983,6 +1005,12 @@ module Aws::AppStream
983
1005
  #
984
1006
  # * stream.standard.medium
985
1007
  #
1008
+ # * stream.standard.large
1009
+ #
1010
+ # * stream.standard.xlarge
1011
+ #
1012
+ # * stream.standard.2xlarge
1013
+ #
986
1014
  # @option params [String] :fleet_type
987
1015
  # The fleet type.
988
1016
  #
@@ -1878,7 +1906,7 @@ module Aws::AppStream
1878
1906
  # message_action: "SUPPRESS", # accepts SUPPRESS, RESEND
1879
1907
  # first_name: "UserAttributeValue",
1880
1908
  # last_name: "UserAttributeValue",
1881
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
1909
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
1882
1910
  # })
1883
1911
  #
1884
1912
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUser AWS API Documentation
@@ -2217,7 +2245,7 @@ module Aws::AppStream
2217
2245
  #
2218
2246
  # resp = client.delete_user({
2219
2247
  # user_name: "Username", # required
2220
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
2248
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
2221
2249
  # })
2222
2250
  #
2223
2251
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteUser AWS API Documentation
@@ -2426,6 +2454,8 @@ module Aws::AppStream
2426
2454
  # resp.directory_configs[0].service_account_credentials.account_name #=> String
2427
2455
  # resp.directory_configs[0].service_account_credentials.account_password #=> String
2428
2456
  # resp.directory_configs[0].created_time #=> Time
2457
+ # resp.directory_configs[0].certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
2458
+ # resp.directory_configs[0].certificate_based_auth_properties.certificate_authority_arn #=> String
2429
2459
  # resp.next_token #=> String
2430
2460
  #
2431
2461
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigs AWS API Documentation
@@ -2824,7 +2854,7 @@ module Aws::AppStream
2824
2854
  # user_id: "UserId",
2825
2855
  # next_token: "String",
2826
2856
  # limit: 1,
2827
- # authentication_type: "API", # accepts API, SAML, USERPOOL
2857
+ # authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
2828
2858
  # })
2829
2859
  #
2830
2860
  # @example Response structure
@@ -2838,7 +2868,7 @@ module Aws::AppStream
2838
2868
  # resp.sessions[0].connection_state #=> String, one of "CONNECTED", "NOT_CONNECTED"
2839
2869
  # resp.sessions[0].start_time #=> Time
2840
2870
  # resp.sessions[0].max_expiration_time #=> Time
2841
- # resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
2871
+ # resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
2842
2872
  # resp.sessions[0].network_access_configuration.eni_private_ip_address #=> String
2843
2873
  # resp.sessions[0].network_access_configuration.eni_id #=> String
2844
2874
  # resp.next_token #=> String
@@ -2997,7 +3027,7 @@ module Aws::AppStream
2997
3027
  # resp = client.describe_user_stack_associations({
2998
3028
  # stack_name: "String",
2999
3029
  # user_name: "Username",
3000
- # authentication_type: "API", # accepts API, SAML, USERPOOL
3030
+ # authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
3001
3031
  # max_results: 1,
3002
3032
  # next_token: "String",
3003
3033
  # })
@@ -3007,7 +3037,7 @@ module Aws::AppStream
3007
3037
  # resp.user_stack_associations #=> Array
3008
3038
  # resp.user_stack_associations[0].stack_name #=> String
3009
3039
  # resp.user_stack_associations[0].user_name #=> String
3010
- # resp.user_stack_associations[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
3040
+ # resp.user_stack_associations[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
3011
3041
  # resp.user_stack_associations[0].send_email_notification #=> Boolean
3012
3042
  # resp.next_token #=> String
3013
3043
  #
@@ -3042,7 +3072,7 @@ module Aws::AppStream
3042
3072
  # @example Request syntax with placeholder values
3043
3073
  #
3044
3074
  # resp = client.describe_users({
3045
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
3075
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
3046
3076
  # max_results: 1,
3047
3077
  # next_token: "String",
3048
3078
  # })
@@ -3057,7 +3087,7 @@ module Aws::AppStream
3057
3087
  # resp.users[0].first_name #=> String
3058
3088
  # resp.users[0].last_name #=> String
3059
3089
  # resp.users[0].created_time #=> Time
3060
- # resp.users[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
3090
+ # resp.users[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
3061
3091
  # resp.next_token #=> String
3062
3092
  #
3063
3093
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeUsers AWS API Documentation
@@ -3089,7 +3119,7 @@ module Aws::AppStream
3089
3119
  #
3090
3120
  # resp = client.disable_user({
3091
3121
  # user_name: "Username", # required
3092
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
3122
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
3093
3123
  # })
3094
3124
  #
3095
3125
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisableUser AWS API Documentation
@@ -3206,7 +3236,7 @@ module Aws::AppStream
3206
3236
  #
3207
3237
  # resp = client.enable_user({
3208
3238
  # user_name: "Username", # required
3209
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
3239
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
3210
3240
  # })
3211
3241
  #
3212
3242
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/EnableUser AWS API Documentation
@@ -3743,6 +3773,18 @@ module Aws::AppStream
3743
3773
  # The credentials for the service account used by the fleet or image
3744
3774
  # builder to connect to the directory.
3745
3775
  #
3776
+ # @option params [Types::CertificateBasedAuthProperties] :certificate_based_auth_properties
3777
+ # The certificate-based authentication properties used to authenticate
3778
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
3779
+ # domain-joined streaming instances. Fallback is turned on by default
3780
+ # when certificate-based authentication is **Enabled** . Fallback allows
3781
+ # users to log in using their AD domain password if certificate-based
3782
+ # authentication is unsuccessful, or to unlock a desktop lock screen.
3783
+ # **Enabled\_no\_directory\_login\_fallback** enables certificate-based
3784
+ # authentication, but does not allow users to log in using their AD
3785
+ # domain password. Users will be disconnected to re-authenticate using
3786
+ # certificates.
3787
+ #
3746
3788
  # @return [Types::UpdateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3747
3789
  #
3748
3790
  # * {Types::UpdateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
@@ -3756,6 +3798,10 @@ module Aws::AppStream
3756
3798
  # account_name: "AccountName", # required
3757
3799
  # account_password: "AccountPassword", # required
3758
3800
  # },
3801
+ # certificate_based_auth_properties: {
3802
+ # status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
3803
+ # certificate_authority_arn: "Arn",
3804
+ # },
3759
3805
  # })
3760
3806
  #
3761
3807
  # @example Response structure
@@ -3766,6 +3812,8 @@ module Aws::AppStream
3766
3812
  # resp.directory_config.service_account_credentials.account_name #=> String
3767
3813
  # resp.directory_config.service_account_credentials.account_password #=> String
3768
3814
  # resp.directory_config.created_time #=> Time
3815
+ # resp.directory_config.certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
3816
+ # resp.directory_config.certificate_based_auth_properties.certificate_authority_arn #=> String
3769
3817
  #
3770
3818
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfig AWS API Documentation
3771
3819
  #
@@ -3875,6 +3923,10 @@ module Aws::AppStream
3875
3923
  #
3876
3924
  # * stream.standard.large
3877
3925
  #
3926
+ # * stream.standard.xlarge
3927
+ #
3928
+ # * stream.standard.2xlarge
3929
+ #
3878
3930
  # * stream.compute.large
3879
3931
  #
3880
3932
  # * stream.compute.xlarge
@@ -3941,6 +3993,12 @@ module Aws::AppStream
3941
3993
  #
3942
3994
  # * stream.standard.medium
3943
3995
  #
3996
+ # * stream.standard.large
3997
+ #
3998
+ # * stream.standard.xlarge
3999
+ #
4000
+ # * stream.standard.2xlarge
4001
+ #
3944
4002
  # @option params [Types::ComputeCapacity] :compute_capacity
3945
4003
  # The desired capacity for the fleet. This is not allowed for Elastic
3946
4004
  # fleets.
@@ -4326,7 +4384,7 @@ module Aws::AppStream
4326
4384
  params: params,
4327
4385
  config: config)
4328
4386
  context[:gem_name] = 'aws-sdk-appstream'
4329
- context[:gem_version] = '1.67.0'
4387
+ context[:gem_version] = '1.68.0'
4330
4388
  Seahorse::Client::Request.new(handlers, context)
4331
4389
  end
4332
4390
 
@@ -48,6 +48,8 @@ module Aws::AppStream
48
48
  BatchDisassociateUserStackResult = Shapes::StructureShape.new(name: 'BatchDisassociateUserStackResult')
49
49
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
50
50
  BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
51
+ CertificateBasedAuthProperties = Shapes::StructureShape.new(name: 'CertificateBasedAuthProperties')
52
+ CertificateBasedAuthStatus = Shapes::StringShape.new(name: 'CertificateBasedAuthStatus')
51
53
  ComputeCapacity = Shapes::StructureShape.new(name: 'ComputeCapacity')
52
54
  ComputeCapacityStatus = Shapes::StructureShape.new(name: 'ComputeCapacityStatus')
53
55
  ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
@@ -388,6 +390,10 @@ module Aws::AppStream
388
390
  BatchDisassociateUserStackResult.add_member(:errors, Shapes::ShapeRef.new(shape: UserStackAssociationErrorList, location_name: "errors"))
389
391
  BatchDisassociateUserStackResult.struct_class = Types::BatchDisassociateUserStackResult
390
392
 
393
+ CertificateBasedAuthProperties.add_member(:status, Shapes::ShapeRef.new(shape: CertificateBasedAuthStatus, location_name: "Status"))
394
+ CertificateBasedAuthProperties.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
395
+ CertificateBasedAuthProperties.struct_class = Types::CertificateBasedAuthProperties
396
+
391
397
  ComputeCapacity.add_member(:desired_instances, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DesiredInstances"))
392
398
  ComputeCapacity.struct_class = Types::ComputeCapacity
393
399
 
@@ -439,6 +445,7 @@ module Aws::AppStream
439
445
  CreateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
440
446
  CreateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, required: true, location_name: "OrganizationalUnitDistinguishedNames"))
441
447
  CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
448
+ CreateDirectoryConfigRequest.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
442
449
  CreateDirectoryConfigRequest.struct_class = Types::CreateDirectoryConfigRequest
443
450
 
444
451
  CreateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
@@ -759,6 +766,7 @@ module Aws::AppStream
759
766
  DirectoryConfig.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
760
767
  DirectoryConfig.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
761
768
  DirectoryConfig.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
769
+ DirectoryConfig.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
762
770
  DirectoryConfig.struct_class = Types::DirectoryConfig
763
771
 
764
772
  DirectoryConfigList.member = Shapes::ShapeRef.new(shape: DirectoryConfig)
@@ -1150,6 +1158,7 @@ module Aws::AppStream
1150
1158
  UpdateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
1151
1159
  UpdateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
1152
1160
  UpdateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
1161
+ UpdateDirectoryConfigRequest.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
1153
1162
  UpdateDirectoryConfigRequest.struct_class = Types::UpdateDirectoryConfigRequest
1154
1163
 
1155
1164
  UpdateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
@@ -372,7 +372,7 @@ module Aws::AppStream
372
372
  # {
373
373
  # stack_name: "String", # required
374
374
  # user_name: "Username", # required
375
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
375
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
376
376
  # send_email_notification: false,
377
377
  # },
378
378
  # ],
@@ -410,7 +410,7 @@ module Aws::AppStream
410
410
  # {
411
411
  # stack_name: "String", # required
412
412
  # user_name: "Username", # required
413
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
413
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
414
414
  # send_email_notification: false,
415
415
  # },
416
416
  # ],
@@ -440,6 +440,42 @@ module Aws::AppStream
440
440
  include Aws::Structure
441
441
  end
442
442
 
443
+ # The certificate-based authentication properties used to authenticate
444
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
445
+ # domain-joined streaming instances. Fallback is turned on by default
446
+ # when certificate-based authentication is **Enabled** . Fallback allows
447
+ # users to log in using their AD domain password if certificate-based
448
+ # authentication is unsuccessful, or to unlock a desktop lock screen.
449
+ # **Enabled\_no\_directory\_login\_fallback** enables certificate-based
450
+ # authentication, but does not allow users to log in using their AD
451
+ # domain password. Users will be disconnected to re-authenticate using
452
+ # certificates.
453
+ #
454
+ # @note When making an API call, you may pass CertificateBasedAuthProperties
455
+ # data as a hash:
456
+ #
457
+ # {
458
+ # status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
459
+ # certificate_authority_arn: "Arn",
460
+ # }
461
+ #
462
+ # @!attribute [rw] status
463
+ # The status of the certificate-based authentication properties.
464
+ # @return [String]
465
+ #
466
+ # @!attribute [rw] certificate_authority_arn
467
+ # The ARN of the AWS Certificate Manager Private CA resource.
468
+ # @return [String]
469
+ #
470
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CertificateBasedAuthProperties AWS API Documentation
471
+ #
472
+ class CertificateBasedAuthProperties < Struct.new(
473
+ :status,
474
+ :certificate_authority_arn)
475
+ SENSITIVE = []
476
+ include Aws::Structure
477
+ end
478
+
443
479
  # Describes the capacity for a fleet.
444
480
  #
445
481
  # @note When making an API call, you may pass ComputeCapacity
@@ -744,6 +780,10 @@ module Aws::AppStream
744
780
  # account_name: "AccountName", # required
745
781
  # account_password: "AccountPassword", # required
746
782
  # },
783
+ # certificate_based_auth_properties: {
784
+ # status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
785
+ # certificate_authority_arn: "Arn",
786
+ # },
747
787
  # }
748
788
  #
749
789
  # @!attribute [rw] directory_name
@@ -761,12 +801,26 @@ module Aws::AppStream
761
801
  # builder to connect to the directory.
762
802
  # @return [Types::ServiceAccountCredentials]
763
803
  #
804
+ # @!attribute [rw] certificate_based_auth_properties
805
+ # The certificate-based authentication properties used to authenticate
806
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
807
+ # domain-joined streaming instances. Fallback is turned on by default
808
+ # when certificate-based authentication is **Enabled** . Fallback
809
+ # allows users to log in using their AD domain password if
810
+ # certificate-based authentication is unsuccessful, or to unlock a
811
+ # desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
812
+ # enables certificate-based authentication, but does not allow users
813
+ # to log in using their AD domain password. Users will be disconnected
814
+ # to re-authenticate using certificates.
815
+ # @return [Types::CertificateBasedAuthProperties]
816
+ #
764
817
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigRequest AWS API Documentation
765
818
  #
766
819
  class CreateDirectoryConfigRequest < Struct.new(
767
820
  :directory_name,
768
821
  :organizational_unit_distinguished_names,
769
- :service_account_credentials)
822
+ :service_account_credentials,
823
+ :certificate_based_auth_properties)
770
824
  SENSITIVE = []
771
825
  include Aws::Structure
772
826
  end
@@ -905,6 +959,10 @@ module Aws::AppStream
905
959
  #
906
960
  # * stream.standard.large
907
961
  #
962
+ # * stream.standard.xlarge
963
+ #
964
+ # * stream.standard.2xlarge
965
+ #
908
966
  # * stream.compute.large
909
967
  #
910
968
  # * stream.compute.xlarge
@@ -970,6 +1028,12 @@ module Aws::AppStream
970
1028
  # * stream.standard.small
971
1029
  #
972
1030
  # * stream.standard.medium
1031
+ #
1032
+ # * stream.standard.large
1033
+ #
1034
+ # * stream.standard.xlarge
1035
+ #
1036
+ # * stream.standard.2xlarge
973
1037
  # @return [String]
974
1038
  #
975
1039
  # @!attribute [rw] fleet_type
@@ -1798,7 +1862,7 @@ module Aws::AppStream
1798
1862
  # message_action: "SUPPRESS", # accepts SUPPRESS, RESEND
1799
1863
  # first_name: "UserAttributeValue",
1800
1864
  # last_name: "UserAttributeValue",
1801
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
1865
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
1802
1866
  # }
1803
1867
  #
1804
1868
  # @!attribute [rw] user_name
@@ -2105,7 +2169,7 @@ module Aws::AppStream
2105
2169
  #
2106
2170
  # {
2107
2171
  # user_name: "Username", # required
2108
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
2172
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
2109
2173
  # }
2110
2174
  #
2111
2175
  # @!attribute [rw] user_name
@@ -2625,7 +2689,7 @@ module Aws::AppStream
2625
2689
  # user_id: "UserId",
2626
2690
  # next_token: "String",
2627
2691
  # limit: 1,
2628
- # authentication_type: "API", # accepts API, SAML, USERPOOL
2692
+ # authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
2629
2693
  # }
2630
2694
  #
2631
2695
  # @!attribute [rw] stack_name
@@ -2782,7 +2846,7 @@ module Aws::AppStream
2782
2846
  # {
2783
2847
  # stack_name: "String",
2784
2848
  # user_name: "Username",
2785
- # authentication_type: "API", # accepts API, SAML, USERPOOL
2849
+ # authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
2786
2850
  # max_results: 1,
2787
2851
  # next_token: "String",
2788
2852
  # }
@@ -2847,7 +2911,7 @@ module Aws::AppStream
2847
2911
  # data as a hash:
2848
2912
  #
2849
2913
  # {
2850
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
2914
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
2851
2915
  # max_results: 1,
2852
2916
  # next_token: "String",
2853
2917
  # }
@@ -2916,13 +2980,27 @@ module Aws::AppStream
2916
2980
  # The time the directory configuration was created.
2917
2981
  # @return [Time]
2918
2982
  #
2983
+ # @!attribute [rw] certificate_based_auth_properties
2984
+ # The certificate-based authentication properties used to authenticate
2985
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
2986
+ # domain-joined streaming instances. Fallback is turned on by default
2987
+ # when certificate-based authentication is **Enabled** . Fallback
2988
+ # allows users to log in using their AD domain password if
2989
+ # certificate-based authentication is unsuccessful, or to unlock a
2990
+ # desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
2991
+ # enables certificate-based authentication, but does not allow users
2992
+ # to log in using their AD domain password. Users will be disconnected
2993
+ # to re-authenticate using certificates.
2994
+ # @return [Types::CertificateBasedAuthProperties]
2995
+ #
2919
2996
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DirectoryConfig AWS API Documentation
2920
2997
  #
2921
2998
  class DirectoryConfig < Struct.new(
2922
2999
  :directory_name,
2923
3000
  :organizational_unit_distinguished_names,
2924
3001
  :service_account_credentials,
2925
- :created_time)
3002
+ :created_time,
3003
+ :certificate_based_auth_properties)
2926
3004
  SENSITIVE = []
2927
3005
  include Aws::Structure
2928
3006
  end
@@ -2932,7 +3010,7 @@ module Aws::AppStream
2932
3010
  #
2933
3011
  # {
2934
3012
  # user_name: "Username", # required
2935
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
3013
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
2936
3014
  # }
2937
3015
  #
2938
3016
  # @!attribute [rw] user_name
@@ -3088,7 +3166,7 @@ module Aws::AppStream
3088
3166
  #
3089
3167
  # {
3090
3168
  # user_name: "Username", # required
3091
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
3169
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
3092
3170
  # }
3093
3171
  #
3094
3172
  # @!attribute [rw] user_name
@@ -4957,6 +5035,10 @@ module Aws::AppStream
4957
5035
  # account_name: "AccountName", # required
4958
5036
  # account_password: "AccountPassword", # required
4959
5037
  # },
5038
+ # certificate_based_auth_properties: {
5039
+ # status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
5040
+ # certificate_authority_arn: "Arn",
5041
+ # },
4960
5042
  # }
4961
5043
  #
4962
5044
  # @!attribute [rw] directory_name
@@ -4973,12 +5055,26 @@ module Aws::AppStream
4973
5055
  # builder to connect to the directory.
4974
5056
  # @return [Types::ServiceAccountCredentials]
4975
5057
  #
5058
+ # @!attribute [rw] certificate_based_auth_properties
5059
+ # The certificate-based authentication properties used to authenticate
5060
+ # SAML 2.0 Identity Provider (IdP) user identities to Active Directory
5061
+ # domain-joined streaming instances. Fallback is turned on by default
5062
+ # when certificate-based authentication is **Enabled** . Fallback
5063
+ # allows users to log in using their AD domain password if
5064
+ # certificate-based authentication is unsuccessful, or to unlock a
5065
+ # desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
5066
+ # enables certificate-based authentication, but does not allow users
5067
+ # to log in using their AD domain password. Users will be disconnected
5068
+ # to re-authenticate using certificates.
5069
+ # @return [Types::CertificateBasedAuthProperties]
5070
+ #
4976
5071
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigRequest AWS API Documentation
4977
5072
  #
4978
5073
  class UpdateDirectoryConfigRequest < Struct.new(
4979
5074
  :directory_name,
4980
5075
  :organizational_unit_distinguished_names,
4981
- :service_account_credentials)
5076
+ :service_account_credentials,
5077
+ :certificate_based_auth_properties)
4982
5078
  SENSITIVE = []
4983
5079
  include Aws::Structure
4984
5080
  end
@@ -5115,6 +5211,10 @@ module Aws::AppStream
5115
5211
  #
5116
5212
  # * stream.standard.large
5117
5213
  #
5214
+ # * stream.standard.xlarge
5215
+ #
5216
+ # * stream.standard.2xlarge
5217
+ #
5118
5218
  # * stream.compute.large
5119
5219
  #
5120
5220
  # * stream.compute.xlarge
@@ -5180,6 +5280,12 @@ module Aws::AppStream
5180
5280
  # * stream.standard.small
5181
5281
  #
5182
5282
  # * stream.standard.medium
5283
+ #
5284
+ # * stream.standard.large
5285
+ #
5286
+ # * stream.standard.xlarge
5287
+ #
5288
+ # * stream.standard.2xlarge
5183
5289
  # @return [String]
5184
5290
  #
5185
5291
  # @!attribute [rw] compute_capacity
@@ -5673,7 +5779,7 @@ module Aws::AppStream
5673
5779
  # {
5674
5780
  # stack_name: "String", # required
5675
5781
  # user_name: "Username", # required
5676
- # authentication_type: "API", # required, accepts API, SAML, USERPOOL
5782
+ # authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
5677
5783
  # send_email_notification: false,
5678
5784
  # }
5679
5785
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-appstream/customizations'
53
53
  # @!group service
54
54
  module Aws::AppStream
55
55
 
56
- GEM_VERSION = '1.67.0'
56
+ GEM_VERSION = '1.68.0'
57
57
 
58
58
  end
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.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core