Skip to content

Commit

Permalink
feat(client-appstream): Added support for Red Hat Enterprise Linux 8 …
Browse files Browse the repository at this point in the history
…on Amazon AppStream 2.0
  • Loading branch information
awstools committed Jul 30, 2024
1 parent e332230 commit bbb4450
Show file tree
Hide file tree
Showing 17 changed files with 10,226 additions and 10,207 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult,
* WorkingDirectory: "STRING_VALUE",
* LaunchParameters: "STRING_VALUE",
* Platforms: [ // Platforms // required
* "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* ],
* InstanceFamilies: [ // StringList // required
* "STRING_VALUE",
Expand Down Expand Up @@ -85,7 +85,7 @@ export interface CreateApplicationCommandOutput extends CreateApplicationResult,
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
4 changes: 2 additions & 2 deletions clients/client-appstream/src/commands/CreateFleetCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
* IdleDisconnectTimeoutInSeconds: Number("int"),
* IamRoleArn: "STRING_VALUE",
* StreamView: "APP" || "DESKTOP",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* MaxConcurrentSessions: Number("int"),
* UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
* "STRING_VALUE",
Expand Down Expand Up @@ -127,7 +127,7 @@ export interface CreateFleetCommandOutput extends CreateFleetResult, __MetadataB
* // IdleDisconnectTimeoutInSeconds: Number("int"),
* // IamRoleArn: "STRING_VALUE",
* // StreamView: "APP" || "DESKTOP",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // MaxConcurrentSessions: Number("int"),
* // UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export interface CreateImageBuilderCommandOutput extends CreateImageBuilderResul
* // ],
* // },
* // InstanceType: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // IamRoleArn: "STRING_VALUE",
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
* // StateChangeReason: { // ImageBuilderStateChangeReason
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul
* // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
* // ImageBuilderSupported: true || false,
* // ImageBuilderName: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // Description: "STRING_VALUE",
* // StateChangeReason: { // ImageStateChangeReason
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
Expand All @@ -85,7 +85,7 @@ export interface CreateUpdatedImageCommandOutput extends CreateUpdatedImageResul
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface DeleteImageBuilderCommandOutput extends DeleteImageBuilderResul
* // ],
* // },
* // InstanceType: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // IamRoleArn: "STRING_VALUE",
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
* // StateChangeReason: { // ImageBuilderStateChangeReason
Expand Down
4 changes: 2 additions & 2 deletions clients/client-appstream/src/commands/DeleteImageCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB
* // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
* // ImageBuilderSupported: true || false,
* // ImageBuilderName: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // Description: "STRING_VALUE",
* // StateChangeReason: { // ImageStateChangeReason
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
Expand All @@ -77,7 +77,7 @@ export interface DeleteImageCommandOutput extends DeleteImageResult, __MetadataB
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export interface DescribeApplicationsCommandOutput extends DescribeApplicationsR
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export interface DescribeFleetsCommandOutput extends DescribeFleetsResult, __Met
* // IdleDisconnectTimeoutInSeconds: Number("int"),
* // IamRoleArn: "STRING_VALUE",
* // StreamView: "APP" || "DESKTOP",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // MaxConcurrentSessions: Number("int"),
* // UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export interface DescribeImageBuildersCommandOutput extends DescribeImageBuilder
* // ],
* // },
* // InstanceType: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // IamRoleArn: "STRING_VALUE",
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
* // StateChangeReason: { // ImageBuilderStateChangeReason
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
* // Visibility: "PUBLIC" || "PRIVATE" || "SHARED",
* // ImageBuilderSupported: true || false,
* // ImageBuilderName: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // Description: "STRING_VALUE",
* // StateChangeReason: { // ImageStateChangeReason
* // Code: "INTERNAL_ERROR" || "IMAGE_BUILDER_NOT_AVAILABLE" || "IMAGE_COPY_FAILURE",
Expand All @@ -85,7 +85,7 @@ export interface DescribeImagesCommandOutput extends DescribeImagesResult, __Met
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export interface StartImageBuilderCommandOutput extends StartImageBuilderResult,
* // ],
* // },
* // InstanceType: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // IamRoleArn: "STRING_VALUE",
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
* // StateChangeReason: { // ImageBuilderStateChangeReason
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export interface StopImageBuilderCommandOutput extends StopImageBuilderResult, _
* // ],
* // },
* // InstanceType: "STRING_VALUE",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // IamRoleArn: "STRING_VALUE",
* // State: "PENDING" || "UPDATING_AGENT" || "RUNNING" || "STOPPING" || "STOPPED" || "REBOOTING" || "SNAPSHOTTING" || "DELETING" || "FAILED" || "UPDATING" || "PENDING_QUALIFICATION",
* // StateChangeReason: { // ImageBuilderStateChangeReason
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export interface UpdateAppBlockBuilderCommandOutput extends UpdateAppBlockBuilde
* Name: "STRING_VALUE", // required
* Description: "STRING_VALUE",
* DisplayName: "STRING_VALUE",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* InstanceType: "STRING_VALUE",
* VpcConfig: { // VpcConfig
* SubnetIds: [ // SubnetIdList
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationResult,
* // S3Key: "STRING_VALUE",
* // },
* // Platforms: [ // Platforms
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // ],
* // InstanceFamilies: [ // StringList
* // "STRING_VALUE",
Expand Down
4 changes: 2 additions & 2 deletions clients/client-appstream/src/commands/UpdateFleetCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
* ],
* IamRoleArn: "STRING_VALUE",
* StreamView: "APP" || "DESKTOP",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* MaxConcurrentSessions: Number("int"),
* UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
* "STRING_VALUE",
Expand Down Expand Up @@ -148,7 +148,7 @@ export interface UpdateFleetCommandOutput extends UpdateFleetResult, __MetadataB
* // IdleDisconnectTimeoutInSeconds: Number("int"),
* // IamRoleArn: "STRING_VALUE",
* // StreamView: "APP" || "DESKTOP",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2",
* // Platform: "WINDOWS" || "WINDOWS_SERVER_2016" || "WINDOWS_SERVER_2019" || "WINDOWS_SERVER_2022" || "AMAZON_LINUX2" || "RHEL8",
* // MaxConcurrentSessions: Number("int"),
* // UsbDeviceFilterStrings: [ // UsbDeviceFilterStrings
* // "STRING_VALUE",
Expand Down
14 changes: 7 additions & 7 deletions clients/client-appstream/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ export type AppBlockBuilderAttribute = (typeof AppBlockBuilderAttribute)[keyof t
*/
export const PlatformType = {
AMAZON_LINUX2: "AMAZON_LINUX2",
RHEL8: "RHEL8",
WINDOWS: "WINDOWS",
WINDOWS_SERVER_2016: "WINDOWS_SERVER_2016",
WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019",
Expand Down Expand Up @@ -2253,7 +2254,7 @@ export interface CreateFleetRequest {

/**
* <p>The amount of time that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance. </p>
* <p>Specify a value between 60 and 360000.</p>
* <p>Specify a value between 60 and 36000.</p>
* @public
*/
DisconnectTimeoutInSeconds?: number;
Expand Down Expand Up @@ -2303,7 +2304,7 @@ export interface CreateFleetRequest {
* and pixels changing do not qualify as user activity. If users continue to be idle after
* the time interval in <code>IdleDisconnectTimeoutInSeconds</code> elapses, they are
* disconnected.</p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 3600. The default value is 0.</p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 36000. The default value is 0.</p>
* <note>
* <p>If you enable this feature, we recommend that you specify a value that corresponds exactly to a whole number of minutes (for example, 60, 120, and 180). If you don't do this, the value is rounded to the nearest minute. For example, if you specify a value of 70, users are disconnected after 1 minute of inactivity. If you specify a value that is at the midpoint between two different minutes, the value is rounded up. For example, if you specify a value of 90, users are disconnected after 2 minutes of inactivity. </p>
* </note>
Expand Down Expand Up @@ -2574,7 +2575,7 @@ export interface Fleet {

/**
* <p>The amount of time that a streaming session remains active after users disconnect. If they try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance.</p>
* <p>Specify a value between 60 and 360000.</p>
* <p>Specify a value between 60 and 36000.</p>
* @public
*/
DisconnectTimeoutInSeconds?: number;
Expand Down Expand Up @@ -2626,7 +2627,7 @@ export interface Fleet {
* and pixels changing do not qualify as user activity. If users continue to be idle after
* the time interval in <code>IdleDisconnectTimeoutInSeconds</code> elapses, they are
* disconnected.</p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 3600. The default value is 0.</p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 36000. The default value is 0.</p>
* <note>
* <p>If you enable this feature, we recommend that you specify a value that corresponds exactly to a whole number of minutes (for example, 60, 120, and 180). If you don't do this, the value is rounded to the nearest minute. For example, if you specify a value of 70, users are disconnected after 1 minute of inactivity. If you specify a value that is at the midpoint between two different minutes, the value is rounded up. For example, if you specify a value of 90, users are disconnected after 2 minutes of inactivity. </p>
* </note>
Expand Down Expand Up @@ -3315,7 +3316,6 @@ export interface UserSetting {
* <p>Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.</p>
* <p>This can be specified only for the <code>CLIPBOARD_COPY_FROM_LOCAL_DEVICE</code> and <code>CLIPBOARD_COPY_TO_LOCAL_DEVICE</code> actions.</p>
* <p>This defaults to 20,971,520 (20 MB) when unspecified and the permission is <code>ENABLED</code>. This can't be specified when the permission is <code>DISABLED</code>. </p>
* <p>This can only be specified for AlwaysOn and OnDemand fleets. The attribute is not supported on Elastic fleets.</p>
* <p>The value can be between 1 and 20,971,520 (20 MB).</p>
* @public
*/
Expand Down Expand Up @@ -6116,7 +6116,7 @@ export interface UpdateFleetRequest {

/**
* <p>The amount of time that a streaming session remains active after users disconnect. If users try to reconnect to the streaming session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new streaming instance. </p>
* <p>Specify a value between 60 and 360000.</p>
* <p>Specify a value between 60 and 36000.</p>
* @public
*/
DisconnectTimeoutInSeconds?: number;
Expand Down Expand Up @@ -6164,7 +6164,7 @@ export interface UpdateFleetRequest {
* and pixels changing do not qualify as user activity. If users continue to be idle after
* the time interval in <code>IdleDisconnectTimeoutInSeconds</code> elapses, they are
* disconnected. </p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 3600. The default value is 0.</p>
* <p>To prevent users from being disconnected due to inactivity, specify a value of 0. Otherwise, specify a value between 60 and 36000. The default value is 0.</p>
* <note>
* <p>If you enable this feature, we recommend that you specify a value that corresponds exactly to a whole number of minutes (for example, 60, 120, and 180). If you don't do this, the value is rounded to the nearest minute. For example, if you specify a value of 70, users are disconnected after 1 minute of inactivity. If you specify a value that is at the midpoint between two different minutes, the value is rounded up. For example, if you specify a value of 90, users are disconnected after 2 minutes of inactivity. </p>
* </note>
Expand Down
Loading

0 comments on commit bbb4450

Please sign in to comment.