@@ -949,6 +949,12 @@ export interface CreateIdentityProviderRequest {
949
949
* @public
950
950
*/
951
951
clientToken ?: string ;
952
+
953
+ /**
954
+ * <p>The tags to add to the identity provider resource. A tag is a key-value pair.</p>
955
+ * @public
956
+ */
957
+ tags ?: Tag [ ] ;
952
958
}
953
959
954
960
/**
@@ -1514,7 +1520,7 @@ export interface CreateIpAccessSettingsRequest {
1514
1520
description ?: string ;
1515
1521
1516
1522
/**
1517
- * <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
1523
+ * <p>The tags to add to the IP access settings resource. A tag is a key-value pair.</p>
1518
1524
* @public
1519
1525
*/
1520
1526
tags ?: Tag [ ] ;
@@ -3418,6 +3424,12 @@ export interface CreateUserSettingsRequest {
3418
3424
* @public
3419
3425
*/
3420
3426
additionalEncryptionContext ?: Record < string , string > ;
3427
+
3428
+ /**
3429
+ * <p>Specifies whether the user can use deep links that open automatically when connecting to a session.</p>
3430
+ * @public
3431
+ */
3432
+ deepLinkAllowed ?: EnabledType ;
3421
3433
}
3422
3434
3423
3435
/**
@@ -3540,6 +3552,12 @@ export interface UserSettings {
3540
3552
* @public
3541
3553
*/
3542
3554
additionalEncryptionContext ?: Record < string , string > ;
3555
+
3556
+ /**
3557
+ * <p>Specifies whether the user can use deep links that open automatically when connecting to a session.</p>
3558
+ * @public
3559
+ */
3560
+ deepLinkAllowed ?: EnabledType ;
3543
3561
}
3544
3562
3545
3563
/**
@@ -3632,6 +3650,12 @@ export interface UserSettingsSummary {
3632
3650
* @public
3633
3651
*/
3634
3652
cookieSynchronizationConfiguration ?: CookieSynchronizationConfiguration ;
3653
+
3654
+ /**
3655
+ * <p>Specifies whether the user can use deep links that open automatically when connecting to a session.</p>
3656
+ * @public
3657
+ */
3658
+ deepLinkAllowed ?: EnabledType ;
3635
3659
}
3636
3660
3637
3661
/**
@@ -3724,6 +3748,12 @@ export interface UpdateUserSettingsRequest {
3724
3748
* @public
3725
3749
*/
3726
3750
cookieSynchronizationConfiguration ?: CookieSynchronizationConfiguration ;
3751
+
3752
+ /**
3753
+ * <p>Specifies whether the user can use deep links that open automatically when connecting to a session.</p>
3754
+ * @public
3755
+ */
3756
+ deepLinkAllowed ?: EnabledType ;
3727
3757
}
3728
3758
3729
3759
/**
@@ -3794,6 +3824,7 @@ export const CreateIdentityProviderRequestFilterSensitiveLog = (obj: CreateIdent
3794
3824
...obj ,
3795
3825
...( obj . identityProviderName && { identityProviderName : SENSITIVE_STRING } ) ,
3796
3826
...( obj . identityProviderDetails && { identityProviderDetails : SENSITIVE_STRING } ) ,
3827
+ ...( obj . tags && { tags : SENSITIVE_STRING } ) ,
3797
3828
} ) ;
3798
3829
3799
3830
/**
0 commit comments