/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the workspaces-2015-04-08.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.WorkSpaces.Model
{
///
/// This is the response object from the DescribeClientBranding operation.
///
public partial class DescribeClientBrandingResponse : AmazonWebServiceResponse
{
private DefaultClientBrandingAttributes _deviceTypeAndroid;
private IosClientBrandingAttributes _deviceTypeIos;
private DefaultClientBrandingAttributes _deviceTypeLinux;
private DefaultClientBrandingAttributes _deviceTypeOsx;
private DefaultClientBrandingAttributes _deviceTypeWeb;
private DefaultClientBrandingAttributes _deviceTypeWindows;
///
/// Gets and sets the property DeviceTypeAndroid.
///
/// The branding information for Android devices.
///
///
public DefaultClientBrandingAttributes DeviceTypeAndroid
{
get { return this._deviceTypeAndroid; }
set { this._deviceTypeAndroid = value; }
}
// Check to see if DeviceTypeAndroid property is set
internal bool IsSetDeviceTypeAndroid()
{
return this._deviceTypeAndroid != null;
}
///
/// Gets and sets the property DeviceTypeIos.
///
/// The branding information for iOS devices.
///
///
public IosClientBrandingAttributes DeviceTypeIos
{
get { return this._deviceTypeIos; }
set { this._deviceTypeIos = value; }
}
// Check to see if DeviceTypeIos property is set
internal bool IsSetDeviceTypeIos()
{
return this._deviceTypeIos != null;
}
///
/// Gets and sets the property DeviceTypeLinux.
///
/// The branding information for Linux devices.
///
///
public DefaultClientBrandingAttributes DeviceTypeLinux
{
get { return this._deviceTypeLinux; }
set { this._deviceTypeLinux = value; }
}
// Check to see if DeviceTypeLinux property is set
internal bool IsSetDeviceTypeLinux()
{
return this._deviceTypeLinux != null;
}
///
/// Gets and sets the property DeviceTypeOsx.
///
/// The branding information for macOS devices.
///
///
public DefaultClientBrandingAttributes DeviceTypeOsx
{
get { return this._deviceTypeOsx; }
set { this._deviceTypeOsx = value; }
}
// Check to see if DeviceTypeOsx property is set
internal bool IsSetDeviceTypeOsx()
{
return this._deviceTypeOsx != null;
}
///
/// Gets and sets the property DeviceTypeWeb.
///
/// The branding information for Web access.
///
///
public DefaultClientBrandingAttributes DeviceTypeWeb
{
get { return this._deviceTypeWeb; }
set { this._deviceTypeWeb = value; }
}
// Check to see if DeviceTypeWeb property is set
internal bool IsSetDeviceTypeWeb()
{
return this._deviceTypeWeb != null;
}
///
/// Gets and sets the property DeviceTypeWindows.
///
/// The branding information for Windows devices.
///
///
public DefaultClientBrandingAttributes DeviceTypeWindows
{
get { return this._deviceTypeWindows; }
set { this._deviceTypeWindows = value; }
}
// Check to see if DeviceTypeWindows property is set
internal bool IsSetDeviceTypeWindows()
{
return this._deviceTypeWindows != null;
}
}
}