repo_name
stringlengths 1
52
| repo_creator
stringclasses 6
values | programming_language
stringclasses 4
values | code
stringlengths 0
9.68M
| num_lines
int64 1
234k
|
---|---|---|---|---|
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DeleteUser operation.
/// </summary>
public partial class DeleteUserResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The details about the developer that published the skill.
/// </summary>
public partial class DeveloperInfo
{
private string _developerName;
private string _email;
private string _privacyPolicy;
private string _url;
/// <summary>
/// Gets and sets the property DeveloperName.
/// <para>
/// The name of the developer.
/// </para>
/// </summary>
public string DeveloperName
{
get { return this._developerName; }
set { this._developerName = value; }
}
// Check to see if DeveloperName property is set
internal bool IsSetDeveloperName()
{
return this._developerName != null;
}
/// <summary>
/// Gets and sets the property Email.
/// <para>
/// The email of the developer.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=128)]
public string Email
{
get { return this._email; }
set { this._email = value; }
}
// Check to see if Email property is set
internal bool IsSetEmail()
{
return this._email != null;
}
/// <summary>
/// Gets and sets the property PrivacyPolicy.
/// <para>
/// The URL of the privacy policy.
/// </para>
/// </summary>
public string PrivacyPolicy
{
get { return this._privacyPolicy; }
set { this._privacyPolicy = value; }
}
// Check to see if PrivacyPolicy property is set
internal bool IsSetPrivacyPolicy()
{
return this._privacyPolicy != null;
}
/// <summary>
/// Gets and sets the property Url.
/// <para>
/// The website of the developer.
/// </para>
/// </summary>
public string Url
{
get { return this._url; }
set { this._url = value; }
}
// Check to see if Url property is set
internal bool IsSetUrl()
{
return this._url != null;
}
}
} | 115 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// A device with attributes.
/// </summary>
public partial class Device
{
private string _deviceArn;
private string _deviceName;
private string _deviceSerialNumber;
private DeviceStatus _deviceStatus;
private DeviceStatusInfo _deviceStatusInfo;
private string _deviceType;
private string _macAddress;
private DeviceNetworkProfileInfo _networkProfileInfo;
private string _roomArn;
private string _softwareVersion;
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of a device.
/// </para>
/// </summary>
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
/// <summary>
/// Gets and sets the property DeviceName.
/// <para>
/// The name of a device.
/// </para>
/// </summary>
[AWSProperty(Min=2, Max=100)]
public string DeviceName
{
get { return this._deviceName; }
set { this._deviceName = value; }
}
// Check to see if DeviceName property is set
internal bool IsSetDeviceName()
{
return this._deviceName != null;
}
/// <summary>
/// Gets and sets the property DeviceSerialNumber.
/// <para>
/// The serial number of a device.
/// </para>
/// </summary>
public string DeviceSerialNumber
{
get { return this._deviceSerialNumber; }
set { this._deviceSerialNumber = value; }
}
// Check to see if DeviceSerialNumber property is set
internal bool IsSetDeviceSerialNumber()
{
return this._deviceSerialNumber != null;
}
/// <summary>
/// Gets and sets the property DeviceStatus.
/// <para>
/// The status of a device. If the status is not READY, check the DeviceStatusInfo value
/// for details.
/// </para>
/// </summary>
public DeviceStatus DeviceStatus
{
get { return this._deviceStatus; }
set { this._deviceStatus = value; }
}
// Check to see if DeviceStatus property is set
internal bool IsSetDeviceStatus()
{
return this._deviceStatus != null;
}
/// <summary>
/// Gets and sets the property DeviceStatusInfo.
/// <para>
/// Detailed information about a device's status.
/// </para>
/// </summary>
public DeviceStatusInfo DeviceStatusInfo
{
get { return this._deviceStatusInfo; }
set { this._deviceStatusInfo = value; }
}
// Check to see if DeviceStatusInfo property is set
internal bool IsSetDeviceStatusInfo()
{
return this._deviceStatusInfo != null;
}
/// <summary>
/// Gets and sets the property DeviceType.
/// <para>
/// The type of a device.
/// </para>
/// </summary>
public string DeviceType
{
get { return this._deviceType; }
set { this._deviceType = value; }
}
// Check to see if DeviceType property is set
internal bool IsSetDeviceType()
{
return this._deviceType != null;
}
/// <summary>
/// Gets and sets the property MacAddress.
/// <para>
/// The MAC address of a device.
/// </para>
/// </summary>
public string MacAddress
{
get { return this._macAddress; }
set { this._macAddress = value; }
}
// Check to see if MacAddress property is set
internal bool IsSetMacAddress()
{
return this._macAddress != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileInfo.
/// <para>
/// Detailed information about a device's network profile.
/// </para>
/// </summary>
public DeviceNetworkProfileInfo NetworkProfileInfo
{
get { return this._networkProfileInfo; }
set { this._networkProfileInfo = value; }
}
// Check to see if NetworkProfileInfo property is set
internal bool IsSetNetworkProfileInfo()
{
return this._networkProfileInfo != null;
}
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The room ARN of a device.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property SoftwareVersion.
/// <para>
/// The software version of a device.
/// </para>
/// </summary>
public string SoftwareVersion
{
get { return this._softwareVersion; }
set { this._softwareVersion = value; }
}
// Check to see if SoftwareVersion property is set
internal bool IsSetSoftwareVersion()
{
return this._softwareVersion != null;
}
}
} | 230 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Device attributes.
/// </summary>
public partial class DeviceData
{
private DateTime? _createdTime;
private string _deviceArn;
private string _deviceName;
private string _deviceSerialNumber;
private DeviceStatus _deviceStatus;
private DeviceStatusInfo _deviceStatusInfo;
private string _deviceType;
private string _macAddress;
private string _networkProfileArn;
private string _networkProfileName;
private string _roomArn;
private string _roomName;
private string _softwareVersion;
/// <summary>
/// Gets and sets the property CreatedTime.
/// <para>
/// The time (in epoch) when the device data was created.
/// </para>
/// </summary>
public DateTime CreatedTime
{
get { return this._createdTime.GetValueOrDefault(); }
set { this._createdTime = value; }
}
// Check to see if CreatedTime property is set
internal bool IsSetCreatedTime()
{
return this._createdTime.HasValue;
}
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of a device.
/// </para>
/// </summary>
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
/// <summary>
/// Gets and sets the property DeviceName.
/// <para>
/// The name of a device.
/// </para>
/// </summary>
[AWSProperty(Min=2, Max=100)]
public string DeviceName
{
get { return this._deviceName; }
set { this._deviceName = value; }
}
// Check to see if DeviceName property is set
internal bool IsSetDeviceName()
{
return this._deviceName != null;
}
/// <summary>
/// Gets and sets the property DeviceSerialNumber.
/// <para>
/// The serial number of a device.
/// </para>
/// </summary>
public string DeviceSerialNumber
{
get { return this._deviceSerialNumber; }
set { this._deviceSerialNumber = value; }
}
// Check to see if DeviceSerialNumber property is set
internal bool IsSetDeviceSerialNumber()
{
return this._deviceSerialNumber != null;
}
/// <summary>
/// Gets and sets the property DeviceStatus.
/// <para>
/// The status of a device.
/// </para>
/// </summary>
public DeviceStatus DeviceStatus
{
get { return this._deviceStatus; }
set { this._deviceStatus = value; }
}
// Check to see if DeviceStatus property is set
internal bool IsSetDeviceStatus()
{
return this._deviceStatus != null;
}
/// <summary>
/// Gets and sets the property DeviceStatusInfo.
/// <para>
/// Detailed information about a device's status.
/// </para>
/// </summary>
public DeviceStatusInfo DeviceStatusInfo
{
get { return this._deviceStatusInfo; }
set { this._deviceStatusInfo = value; }
}
// Check to see if DeviceStatusInfo property is set
internal bool IsSetDeviceStatusInfo()
{
return this._deviceStatusInfo != null;
}
/// <summary>
/// Gets and sets the property DeviceType.
/// <para>
/// The type of a device.
/// </para>
/// </summary>
public string DeviceType
{
get { return this._deviceType; }
set { this._deviceType = value; }
}
// Check to see if DeviceType property is set
internal bool IsSetDeviceType()
{
return this._deviceType != null;
}
/// <summary>
/// Gets and sets the property MacAddress.
/// <para>
/// The MAC address of a device.
/// </para>
/// </summary>
public string MacAddress
{
get { return this._macAddress; }
set { this._macAddress = value; }
}
// Check to see if MacAddress property is set
internal bool IsSetMacAddress()
{
return this._macAddress != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileArn.
/// <para>
/// The ARN of the network profile associated with a device.
/// </para>
/// </summary>
public string NetworkProfileArn
{
get { return this._networkProfileArn; }
set { this._networkProfileArn = value; }
}
// Check to see if NetworkProfileArn property is set
internal bool IsSetNetworkProfileArn()
{
return this._networkProfileArn != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileName.
/// <para>
/// The name of the network profile associated with a device.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string NetworkProfileName
{
get { return this._networkProfileName; }
set { this._networkProfileName = value; }
}
// Check to see if NetworkProfileName property is set
internal bool IsSetNetworkProfileName()
{
return this._networkProfileName != null;
}
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The room ARN associated with a device.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property RoomName.
/// <para>
/// The name of the room associated with a device.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string RoomName
{
get { return this._roomName; }
set { this._roomName = value; }
}
// Check to see if RoomName property is set
internal bool IsSetRoomName()
{
return this._roomName != null;
}
/// <summary>
/// Gets and sets the property SoftwareVersion.
/// <para>
/// The software version of a device.
/// </para>
/// </summary>
public string SoftwareVersion
{
get { return this._softwareVersion; }
set { this._softwareVersion = value; }
}
// Check to see if SoftwareVersion property is set
internal bool IsSetSoftwareVersion()
{
return this._softwareVersion != null;
}
}
} | 288 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The list of device events.
/// </summary>
public partial class DeviceEvent
{
private DateTime? _timestamp;
private DeviceEventType _type;
private string _value;
/// <summary>
/// Gets and sets the property Timestamp.
/// <para>
/// The time (in epoch) when the event occurred.
/// </para>
/// </summary>
public DateTime Timestamp
{
get { return this._timestamp.GetValueOrDefault(); }
set { this._timestamp = value; }
}
// Check to see if Timestamp property is set
internal bool IsSetTimestamp()
{
return this._timestamp.HasValue;
}
/// <summary>
/// Gets and sets the property Type.
/// <para>
/// The type of device event.
/// </para>
/// </summary>
public DeviceEventType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
/// <summary>
/// Gets and sets the property Value.
/// <para>
/// The value of the event.
/// </para>
/// </summary>
public string Value
{
get { return this._value; }
set { this._value = value; }
}
// Check to see if Value property is set
internal bool IsSetValue()
{
return this._value != null;
}
}
} | 95 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Detailed information about a device's network profile.
/// </summary>
public partial class DeviceNetworkProfileInfo
{
private string _certificateArn;
private DateTime? _certificateExpirationTime;
private string _networkProfileArn;
/// <summary>
/// Gets and sets the property CertificateArn.
/// <para>
/// The ARN of the certificate associated with a device.
/// </para>
/// </summary>
public string CertificateArn
{
get { return this._certificateArn; }
set { this._certificateArn = value; }
}
// Check to see if CertificateArn property is set
internal bool IsSetCertificateArn()
{
return this._certificateArn != null;
}
/// <summary>
/// Gets and sets the property CertificateExpirationTime.
/// <para>
/// The time (in epoch) when the certificate expires.
/// </para>
/// </summary>
public DateTime CertificateExpirationTime
{
get { return this._certificateExpirationTime.GetValueOrDefault(); }
set { this._certificateExpirationTime = value; }
}
// Check to see if CertificateExpirationTime property is set
internal bool IsSetCertificateExpirationTime()
{
return this._certificateExpirationTime.HasValue;
}
/// <summary>
/// Gets and sets the property NetworkProfileArn.
/// <para>
/// The ARN of the network profile associated with a device.
/// </para>
/// </summary>
public string NetworkProfileArn
{
get { return this._networkProfileArn; }
set { this._networkProfileArn = value; }
}
// Check to see if NetworkProfileArn property is set
internal bool IsSetNetworkProfileArn()
{
return this._networkProfileArn != null;
}
}
} | 95 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The request failed because this device is no longer registered and therefore no longer
/// managed by this account.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class DeviceNotRegisteredException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new DeviceNotRegisteredException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public DeviceNotRegisteredException(string message)
: base(message) {}
/// <summary>
/// Construct instance of DeviceNotRegisteredException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public DeviceNotRegisteredException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of DeviceNotRegisteredException
/// </summary>
/// <param name="innerException"></param>
public DeviceNotRegisteredException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of DeviceNotRegisteredException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public DeviceNotRegisteredException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of DeviceNotRegisteredException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public DeviceNotRegisteredException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the DeviceNotRegisteredException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected DeviceNotRegisteredException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 125 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Details of a device’s status.
/// </summary>
public partial class DeviceStatusDetail
{
private DeviceStatusDetailCode _code;
private Feature _feature;
/// <summary>
/// Gets and sets the property Code.
/// <para>
/// The device status detail code.
/// </para>
/// </summary>
public DeviceStatusDetailCode Code
{
get { return this._code; }
set { this._code = value; }
}
// Check to see if Code property is set
internal bool IsSetCode()
{
return this._code != null;
}
/// <summary>
/// Gets and sets the property Feature.
/// <para>
/// The list of available features on the device.
/// </para>
/// </summary>
public Feature Feature
{
get { return this._feature; }
set { this._feature = value; }
}
// Check to see if Feature property is set
internal bool IsSetFeature()
{
return this._feature != null;
}
}
} | 76 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Detailed information about a device's status.
/// </summary>
public partial class DeviceStatusInfo
{
private ConnectionStatus _connectionStatus;
private DateTime? _connectionStatusUpdatedTime;
private List<DeviceStatusDetail> _deviceStatusDetails = new List<DeviceStatusDetail>();
/// <summary>
/// Gets and sets the property ConnectionStatus.
/// <para>
/// The latest available information about the connection status of a device.
/// </para>
/// </summary>
public ConnectionStatus ConnectionStatus
{
get { return this._connectionStatus; }
set { this._connectionStatus = value; }
}
// Check to see if ConnectionStatus property is set
internal bool IsSetConnectionStatus()
{
return this._connectionStatus != null;
}
/// <summary>
/// Gets and sets the property ConnectionStatusUpdatedTime.
/// <para>
/// The time (in epoch) when the device connection status changed.
/// </para>
/// </summary>
public DateTime ConnectionStatusUpdatedTime
{
get { return this._connectionStatusUpdatedTime.GetValueOrDefault(); }
set { this._connectionStatusUpdatedTime = value; }
}
// Check to see if ConnectionStatusUpdatedTime property is set
internal bool IsSetConnectionStatusUpdatedTime()
{
return this._connectionStatusUpdatedTime.HasValue;
}
/// <summary>
/// Gets and sets the property DeviceStatusDetails.
/// <para>
/// One or more device status detail descriptions.
/// </para>
/// </summary>
public List<DeviceStatusDetail> DeviceStatusDetails
{
get { return this._deviceStatusDetails; }
set { this._deviceStatusDetails = value; }
}
// Check to see if DeviceStatusDetails property is set
internal bool IsSetDeviceStatusDetails()
{
return this._deviceStatusDetails != null && this._deviceStatusDetails.Count > 0;
}
}
} | 95 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the DisassociateContactFromAddressBook operation.
/// Disassociates a contact from a given address book.
/// </summary>
public partial class DisassociateContactFromAddressBookRequest : AmazonAlexaForBusinessRequest
{
private string _addressBookArn;
private string _contactArn;
/// <summary>
/// Gets and sets the property AddressBookArn.
/// <para>
/// The ARN of the address from which to disassociate the contact.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AddressBookArn
{
get { return this._addressBookArn; }
set { this._addressBookArn = value; }
}
// Check to see if AddressBookArn property is set
internal bool IsSetAddressBookArn()
{
return this._addressBookArn != null;
}
/// <summary>
/// Gets and sets the property ContactArn.
/// <para>
/// The ARN of the contact to disassociate from an address book.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ContactArn
{
get { return this._contactArn; }
set { this._contactArn = value; }
}
// Check to see if ContactArn property is set
internal bool IsSetContactArn()
{
return this._contactArn != null;
}
}
} | 79 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DisassociateContactFromAddressBook operation.
/// </summary>
public partial class DisassociateContactFromAddressBookResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the DisassociateDeviceFromRoom operation.
/// Disassociates a device from its current room. The device continues to be connected
/// to the Wi-Fi network and is still registered to the account. The device settings and
/// skills are removed from the room.
/// </summary>
public partial class DisassociateDeviceFromRoomRequest : AmazonAlexaForBusinessRequest
{
private string _deviceArn;
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of the device to disassociate from a room. Required.
/// </para>
/// </summary>
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
}
} | 60 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DisassociateDeviceFromRoom operation.
/// </summary>
public partial class DisassociateDeviceFromRoomResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the DisassociateSkillFromSkillGroup operation.
/// Disassociates a skill from a skill group.
/// </summary>
public partial class DisassociateSkillFromSkillGroupRequest : AmazonAlexaForBusinessRequest
{
private string _skillGroupArn;
private string _skillId;
/// <summary>
/// Gets and sets the property SkillGroupArn.
/// <para>
/// The unique identifier of a skill. Required.
/// </para>
/// </summary>
public string SkillGroupArn
{
get { return this._skillGroupArn; }
set { this._skillGroupArn = value; }
}
// Check to see if SkillGroupArn property is set
internal bool IsSetSkillGroupArn()
{
return this._skillGroupArn != null;
}
/// <summary>
/// Gets and sets the property SkillId.
/// <para>
/// The ARN of a skill group to associate to a skill.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string SkillId
{
get { return this._skillId; }
set { this._skillId = value; }
}
// Check to see if SkillId property is set
internal bool IsSetSkillId()
{
return this._skillId != null;
}
}
} | 78 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DisassociateSkillFromSkillGroup operation.
/// </summary>
public partial class DisassociateSkillFromSkillGroupResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the DisassociateSkillFromUsers operation.
/// Makes a private skill unavailable for enrolled users and prevents them from enabling
/// it on their devices.
/// </summary>
public partial class DisassociateSkillFromUsersRequest : AmazonAlexaForBusinessRequest
{
private string _skillId;
/// <summary>
/// Gets and sets the property SkillId.
/// <para>
/// The private skill ID you want to make unavailable for enrolled users.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string SkillId
{
get { return this._skillId; }
set { this._skillId = value; }
}
// Check to see if SkillId property is set
internal bool IsSetSkillId()
{
return this._skillId != null;
}
}
} | 60 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DisassociateSkillFromUsers operation.
/// </summary>
public partial class DisassociateSkillFromUsersResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the DisassociateSkillGroupFromRoom operation.
/// Disassociates a skill group from a specified room. This disables all skills in the
/// skill group on all devices in the room.
/// </summary>
public partial class DisassociateSkillGroupFromRoomRequest : AmazonAlexaForBusinessRequest
{
private string _roomArn;
private string _skillGroupArn;
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The ARN of the room from which the skill group is to be disassociated. Required.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property SkillGroupArn.
/// <para>
/// The ARN of the skill group to disassociate from a room. Required.
/// </para>
/// </summary>
public string SkillGroupArn
{
get { return this._skillGroupArn; }
set { this._skillGroupArn = value; }
}
// Check to see if SkillGroupArn property is set
internal bool IsSetSkillGroupArn()
{
return this._skillGroupArn != null;
}
}
} | 78 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the DisassociateSkillGroupFromRoom operation.
/// </summary>
public partial class DisassociateSkillGroupFromRoomResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Settings for the end of meeting reminder feature that are applied to a room profile.
/// The end of meeting reminder enables Alexa to remind users when a meeting is ending.
/// </summary>
public partial class EndOfMeetingReminder
{
private bool? _enabled;
private List<int> _reminderAtMinutes = new List<int>();
private EndOfMeetingReminderType _reminderType;
/// <summary>
/// Gets and sets the property Enabled.
/// <para>
/// Whether an end of meeting reminder is enabled or not.
/// </para>
/// </summary>
public bool Enabled
{
get { return this._enabled.GetValueOrDefault(); }
set { this._enabled = value; }
}
// Check to see if Enabled property is set
internal bool IsSetEnabled()
{
return this._enabled.HasValue;
}
/// <summary>
/// Gets and sets the property ReminderAtMinutes.
/// <para>
/// A range of 3 to 15 minutes that determines when the reminder begins.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1)]
public List<int> ReminderAtMinutes
{
get { return this._reminderAtMinutes; }
set { this._reminderAtMinutes = value; }
}
// Check to see if ReminderAtMinutes property is set
internal bool IsSetReminderAtMinutes()
{
return this._reminderAtMinutes != null && this._reminderAtMinutes.Count > 0;
}
/// <summary>
/// Gets and sets the property ReminderType.
/// <para>
/// The type of sound that users hear during the end of meeting reminder.
/// </para>
/// </summary>
public EndOfMeetingReminderType ReminderType
{
get { return this._reminderType; }
set { this._reminderType = value; }
}
// Check to see if ReminderType property is set
internal bool IsSetReminderType()
{
return this._reminderType != null;
}
}
} | 97 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// A filter name and value pair that is used to return a more specific list of results.
/// Filters can be used to match a set of resources by various criteria.
/// </summary>
public partial class Filter
{
private string _key;
private List<string> _values = new List<string>();
/// <summary>
/// Gets and sets the property Key.
/// <para>
/// The key of a filter.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=500)]
public string Key
{
get { return this._key; }
set { this._key = value; }
}
// Check to see if Key property is set
internal bool IsSetKey()
{
return this._key != null;
}
/// <summary>
/// Gets and sets the property Values.
/// <para>
/// The values of a filter.
/// </para>
/// </summary>
[AWSProperty(Required=true, Max=50)]
public List<string> Values
{
get { return this._values; }
set { this._values = value; }
}
// Check to see if Values property is set
internal bool IsSetValues()
{
return this._values != null && this._values.Count > 0;
}
}
} | 79 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ForgetSmartHomeAppliances operation.
/// Forgets smart home appliances associated to a room.
/// </summary>
public partial class ForgetSmartHomeAppliancesRequest : AmazonAlexaForBusinessRequest
{
private string _roomArn;
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The room that the appliances are associated with.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ForgetSmartHomeAppliances operation.
/// </summary>
public partial class ForgetSmartHomeAppliancesResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The details of the gateway.
/// </summary>
public partial class Gateway
{
private string _arn;
private string _description;
private string _gatewayGroupArn;
private string _name;
private string _softwareVersion;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the gateway.
/// </para>
/// </summary>
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// The description of the gateway.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property GatewayGroupArn.
/// <para>
/// The ARN of the gateway group that the gateway is associated to.
/// </para>
/// </summary>
public string GatewayGroupArn
{
get { return this._gatewayGroupArn; }
set { this._gatewayGroupArn = value; }
}
// Check to see if GatewayGroupArn property is set
internal bool IsSetGatewayGroupArn()
{
return this._gatewayGroupArn != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the gateway.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=253)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
/// <summary>
/// Gets and sets the property SoftwareVersion.
/// <para>
/// The software version of the gateway. The gateway automatically updates its software
/// version during normal operation.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public string SoftwareVersion
{
get { return this._softwareVersion; }
set { this._softwareVersion = value; }
}
// Check to see if SoftwareVersion property is set
internal bool IsSetSoftwareVersion()
{
return this._softwareVersion != null;
}
}
} | 137 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The details of the gateway group.
/// </summary>
public partial class GatewayGroup
{
private string _arn;
private string _description;
private string _name;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the gateway group.
/// </para>
/// </summary>
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// The description of the gateway group.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the gateway group.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
}
} | 97 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The summary of a gateway group.
/// </summary>
public partial class GatewayGroupSummary
{
private string _arn;
private string _description;
private string _name;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the gateway group.
/// </para>
/// </summary>
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// The description of the gateway group.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the gateway group.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
}
} | 97 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The summary of a gateway.
/// </summary>
public partial class GatewaySummary
{
private string _arn;
private string _description;
private string _gatewayGroupArn;
private string _name;
private string _softwareVersion;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the gateway.
/// </para>
/// </summary>
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// The description of the gateway.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property GatewayGroupArn.
/// <para>
/// The ARN of the gateway group that the gateway is associated to.
/// </para>
/// </summary>
public string GatewayGroupArn
{
get { return this._gatewayGroupArn; }
set { this._gatewayGroupArn = value; }
}
// Check to see if GatewayGroupArn property is set
internal bool IsSetGatewayGroupArn()
{
return this._gatewayGroupArn != null;
}
/// <summary>
/// Gets and sets the property Name.
/// <para>
/// The name of the gateway.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=253)]
public string Name
{
get { return this._name; }
set { this._name = value; }
}
// Check to see if Name property is set
internal bool IsSetName()
{
return this._name != null;
}
/// <summary>
/// Gets and sets the property SoftwareVersion.
/// <para>
/// The software version of the gateway. The gateway automatically updates its software
/// version during normal operation.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public string SoftwareVersion
{
get { return this._softwareVersion; }
set { this._softwareVersion = value; }
}
// Check to see if SoftwareVersion property is set
internal bool IsSetSoftwareVersion()
{
return this._softwareVersion != null;
}
}
} | 137 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetAddressBook operation.
/// Gets address the book details by the address book ARN.
/// </summary>
public partial class GetAddressBookRequest : AmazonAlexaForBusinessRequest
{
private string _addressBookArn;
/// <summary>
/// Gets and sets the property AddressBookArn.
/// <para>
/// The ARN of the address book for which to request details.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AddressBookArn
{
get { return this._addressBookArn; }
set { this._addressBookArn = value; }
}
// Check to see if AddressBookArn property is set
internal bool IsSetAddressBookArn()
{
return this._addressBookArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetAddressBook operation.
/// </summary>
public partial class GetAddressBookResponse : AmazonWebServiceResponse
{
private AddressBook _addressBook;
/// <summary>
/// Gets and sets the property AddressBook.
/// <para>
/// The details of the requested address book.
/// </para>
/// </summary>
public AddressBook AddressBook
{
get { return this._addressBook; }
set { this._addressBook = value; }
}
// Check to see if AddressBook property is set
internal bool IsSetAddressBook()
{
return this._addressBook != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetConferencePreference operation.
/// Retrieves the existing conference preferences.
/// </summary>
public partial class GetConferencePreferenceRequest : AmazonAlexaForBusinessRequest
{
}
} | 39 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetConferencePreference operation.
/// </summary>
public partial class GetConferencePreferenceResponse : AmazonWebServiceResponse
{
private ConferencePreference _preference;
/// <summary>
/// Gets and sets the property Preference.
/// <para>
/// The conference preference.
/// </para>
/// </summary>
public ConferencePreference Preference
{
get { return this._preference; }
set { this._preference = value; }
}
// Check to see if Preference property is set
internal bool IsSetPreference()
{
return this._preference != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetConferenceProvider operation.
/// Gets details about a specific conference provider.
/// </summary>
public partial class GetConferenceProviderRequest : AmazonAlexaForBusinessRequest
{
private string _conferenceProviderArn;
/// <summary>
/// Gets and sets the property ConferenceProviderArn.
/// <para>
/// The ARN of the newly created conference provider.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ConferenceProviderArn
{
get { return this._conferenceProviderArn; }
set { this._conferenceProviderArn = value; }
}
// Check to see if ConferenceProviderArn property is set
internal bool IsSetConferenceProviderArn()
{
return this._conferenceProviderArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetConferenceProvider operation.
/// </summary>
public partial class GetConferenceProviderResponse : AmazonWebServiceResponse
{
private ConferenceProvider _conferenceProvider;
/// <summary>
/// Gets and sets the property ConferenceProvider.
/// <para>
/// The conference provider.
/// </para>
/// </summary>
public ConferenceProvider ConferenceProvider
{
get { return this._conferenceProvider; }
set { this._conferenceProvider = value; }
}
// Check to see if ConferenceProvider property is set
internal bool IsSetConferenceProvider()
{
return this._conferenceProvider != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetContact operation.
/// Gets the contact details by the contact ARN.
/// </summary>
public partial class GetContactRequest : AmazonAlexaForBusinessRequest
{
private string _contactArn;
/// <summary>
/// Gets and sets the property ContactArn.
/// <para>
/// The ARN of the contact for which to request details.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ContactArn
{
get { return this._contactArn; }
set { this._contactArn = value; }
}
// Check to see if ContactArn property is set
internal bool IsSetContactArn()
{
return this._contactArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetContact operation.
/// </summary>
public partial class GetContactResponse : AmazonWebServiceResponse
{
private Contact _contact;
/// <summary>
/// Gets and sets the property Contact.
/// <para>
/// The details of the requested contact.
/// </para>
/// </summary>
public Contact Contact
{
get { return this._contact; }
set { this._contact = value; }
}
// Check to see if Contact property is set
internal bool IsSetContact()
{
return this._contact != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetDevice operation.
/// Gets the details of a device by device ARN.
/// </summary>
public partial class GetDeviceRequest : AmazonAlexaForBusinessRequest
{
private string _deviceArn;
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of the device for which to request details. Required.
/// </para>
/// </summary>
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
}
} | 58 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetDevice operation.
/// </summary>
public partial class GetDeviceResponse : AmazonWebServiceResponse
{
private Device _device;
/// <summary>
/// Gets and sets the property Device.
/// <para>
/// The details of the device requested. Required.
/// </para>
/// </summary>
public Device Device
{
get { return this._device; }
set { this._device = value; }
}
// Check to see if Device property is set
internal bool IsSetDevice()
{
return this._device != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetGatewayGroup operation.
/// Retrieves the details of a gateway group.
/// </summary>
public partial class GetGatewayGroupRequest : AmazonAlexaForBusinessRequest
{
private string _gatewayGroupArn;
/// <summary>
/// Gets and sets the property GatewayGroupArn.
/// <para>
/// The ARN of the gateway group to get.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string GatewayGroupArn
{
get { return this._gatewayGroupArn; }
set { this._gatewayGroupArn = value; }
}
// Check to see if GatewayGroupArn property is set
internal bool IsSetGatewayGroupArn()
{
return this._gatewayGroupArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetGatewayGroup operation.
/// </summary>
public partial class GetGatewayGroupResponse : AmazonWebServiceResponse
{
private GatewayGroup _gatewayGroup;
/// <summary>
/// Gets and sets the property GatewayGroup.
/// </summary>
public GatewayGroup GatewayGroup
{
get { return this._gatewayGroup; }
set { this._gatewayGroup = value; }
}
// Check to see if GatewayGroup property is set
internal bool IsSetGatewayGroup()
{
return this._gatewayGroup != null;
}
}
} | 54 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetGateway operation.
/// Retrieves the details of a gateway.
/// </summary>
public partial class GetGatewayRequest : AmazonAlexaForBusinessRequest
{
private string _gatewayArn;
/// <summary>
/// Gets and sets the property GatewayArn.
/// <para>
/// The ARN of the gateway to get.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string GatewayArn
{
get { return this._gatewayArn; }
set { this._gatewayArn = value; }
}
// Check to see if GatewayArn property is set
internal bool IsSetGatewayArn()
{
return this._gatewayArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetGateway operation.
/// </summary>
public partial class GetGatewayResponse : AmazonWebServiceResponse
{
private Gateway _gateway;
/// <summary>
/// Gets and sets the property Gateway.
/// <para>
/// The details of the gateway.
/// </para>
/// </summary>
public Gateway Gateway
{
get { return this._gateway; }
set { this._gateway = value; }
}
// Check to see if Gateway property is set
internal bool IsSetGateway()
{
return this._gateway != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetInvitationConfiguration operation.
/// Retrieves the configured values for the user enrollment invitation email template.
/// </summary>
public partial class GetInvitationConfigurationRequest : AmazonAlexaForBusinessRequest
{
}
} | 39 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetInvitationConfiguration operation.
/// </summary>
public partial class GetInvitationConfigurationResponse : AmazonWebServiceResponse
{
private string _contactEmail;
private string _organizationName;
private List<string> _privateSkillIds = new List<string>();
/// <summary>
/// Gets and sets the property ContactEmail.
/// <para>
/// The email ID of the organization or individual contact that the enrolled user can
/// use.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=128)]
public string ContactEmail
{
get { return this._contactEmail; }
set { this._contactEmail = value; }
}
// Check to see if ContactEmail property is set
internal bool IsSetContactEmail()
{
return this._contactEmail != null;
}
/// <summary>
/// Gets and sets the property OrganizationName.
/// <para>
/// The name of the organization sending the enrollment invite to a user.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string OrganizationName
{
get { return this._organizationName; }
set { this._organizationName = value; }
}
// Check to see if OrganizationName property is set
internal bool IsSetOrganizationName()
{
return this._organizationName != null;
}
/// <summary>
/// Gets and sets the property PrivateSkillIds.
/// <para>
/// The list of private skill IDs that you want to recommend to the user to enable in
/// the invitation.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=3)]
public List<string> PrivateSkillIds
{
get { return this._privateSkillIds; }
set { this._privateSkillIds = value; }
}
// Check to see if PrivateSkillIds property is set
internal bool IsSetPrivateSkillIds()
{
return this._privateSkillIds != null && this._privateSkillIds.Count > 0;
}
}
} | 100 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetNetworkProfile operation.
/// Gets the network profile details by the network profile ARN.
/// </summary>
public partial class GetNetworkProfileRequest : AmazonAlexaForBusinessRequest
{
private string _networkProfileArn;
/// <summary>
/// Gets and sets the property NetworkProfileArn.
/// <para>
/// The ARN of the network profile associated with a device.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string NetworkProfileArn
{
get { return this._networkProfileArn; }
set { this._networkProfileArn = value; }
}
// Check to see if NetworkProfileArn property is set
internal bool IsSetNetworkProfileArn()
{
return this._networkProfileArn != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetNetworkProfile operation.
/// </summary>
public partial class GetNetworkProfileResponse : AmazonWebServiceResponse
{
private NetworkProfile _networkProfile;
/// <summary>
/// Gets and sets the property NetworkProfile.
/// <para>
/// The network profile associated with a device.
/// </para>
/// </summary>
public NetworkProfile NetworkProfile
{
get { return this._networkProfile; }
set { this._networkProfile = value; }
}
// Check to see if NetworkProfile property is set
internal bool IsSetNetworkProfile()
{
return this._networkProfile != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetProfile operation.
/// Gets the details of a room profile by profile ARN.
/// </summary>
public partial class GetProfileRequest : AmazonAlexaForBusinessRequest
{
private string _profileArn;
/// <summary>
/// Gets and sets the property ProfileArn.
/// <para>
/// The ARN of the room profile for which to request details. Required.
/// </para>
/// </summary>
public string ProfileArn
{
get { return this._profileArn; }
set { this._profileArn = value; }
}
// Check to see if ProfileArn property is set
internal bool IsSetProfileArn()
{
return this._profileArn != null;
}
}
} | 58 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetProfile operation.
/// </summary>
public partial class GetProfileResponse : AmazonWebServiceResponse
{
private Profile _profile;
/// <summary>
/// Gets and sets the property Profile.
/// <para>
/// The details of the room profile requested. Required.
/// </para>
/// </summary>
public Profile Profile
{
get { return this._profile; }
set { this._profile = value; }
}
// Check to see if Profile property is set
internal bool IsSetProfile()
{
return this._profile != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetRoom operation.
/// Gets room details by room ARN.
/// </summary>
public partial class GetRoomRequest : AmazonAlexaForBusinessRequest
{
private string _roomArn;
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The ARN of the room for which to request details. Required.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
}
} | 58 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetRoom operation.
/// </summary>
public partial class GetRoomResponse : AmazonWebServiceResponse
{
private Room _room;
/// <summary>
/// Gets and sets the property Room.
/// <para>
/// The details of the room requested.
/// </para>
/// </summary>
public Room Room
{
get { return this._room; }
set { this._room = value; }
}
// Check to see if Room property is set
internal bool IsSetRoom()
{
return this._room != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetRoomSkillParameter operation.
/// Gets room skill parameter details by room, skill, and parameter key ARN.
/// </summary>
public partial class GetRoomSkillParameterRequest : AmazonAlexaForBusinessRequest
{
private string _parameterKey;
private string _roomArn;
private string _skillId;
/// <summary>
/// Gets and sets the property ParameterKey.
/// <para>
/// The room skill parameter key for which to get details. Required.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string ParameterKey
{
get { return this._parameterKey; }
set { this._parameterKey = value; }
}
// Check to see if ParameterKey property is set
internal bool IsSetParameterKey()
{
return this._parameterKey != null;
}
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The ARN of the room from which to get the room skill parameter details.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property SkillId.
/// <para>
/// The ARN of the skill from which to get the room skill parameter details. Required.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string SkillId
{
get { return this._skillId; }
set { this._skillId = value; }
}
// Check to see if SkillId property is set
internal bool IsSetSkillId()
{
return this._skillId != null;
}
}
} | 98 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetRoomSkillParameter operation.
/// </summary>
public partial class GetRoomSkillParameterResponse : AmazonWebServiceResponse
{
private RoomSkillParameter _roomSkillParameter;
/// <summary>
/// Gets and sets the property RoomSkillParameter.
/// <para>
/// The details of the room skill parameter requested. Required.
/// </para>
/// </summary>
public RoomSkillParameter RoomSkillParameter
{
get { return this._roomSkillParameter; }
set { this._roomSkillParameter = value; }
}
// Check to see if RoomSkillParameter property is set
internal bool IsSetRoomSkillParameter()
{
return this._roomSkillParameter != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the GetSkillGroup operation.
/// Gets skill group details by skill group ARN.
/// </summary>
public partial class GetSkillGroupRequest : AmazonAlexaForBusinessRequest
{
private string _skillGroupArn;
/// <summary>
/// Gets and sets the property SkillGroupArn.
/// <para>
/// The ARN of the skill group for which to get details. Required.
/// </para>
/// </summary>
public string SkillGroupArn
{
get { return this._skillGroupArn; }
set { this._skillGroupArn = value; }
}
// Check to see if SkillGroupArn property is set
internal bool IsSetSkillGroupArn()
{
return this._skillGroupArn != null;
}
}
} | 58 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the GetSkillGroup operation.
/// </summary>
public partial class GetSkillGroupResponse : AmazonWebServiceResponse
{
private SkillGroup _skillGroup;
/// <summary>
/// Gets and sets the property SkillGroup.
/// <para>
/// The details of the skill group requested. Required.
/// </para>
/// </summary>
public SkillGroup SkillGroup
{
get { return this._skillGroup; }
set { this._skillGroup = value; }
}
// Check to see if SkillGroup property is set
internal bool IsSetSkillGroup()
{
return this._skillGroup != null;
}
}
} | 57 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Settings for the instant booking feature that are applied to a room profile. When
/// users start their meeting with Alexa, Alexa automatically books the room for the configured
/// duration if the room is available.
/// </summary>
public partial class InstantBooking
{
private int? _durationInMinutes;
private bool? _enabled;
/// <summary>
/// Gets and sets the property DurationInMinutes.
/// <para>
/// Duration between 15 and 240 minutes at increments of 15 that determines how long to
/// book an available room when a meeting is started with Alexa.
/// </para>
/// </summary>
public int DurationInMinutes
{
get { return this._durationInMinutes.GetValueOrDefault(); }
set { this._durationInMinutes = value; }
}
// Check to see if DurationInMinutes property is set
internal bool IsSetDurationInMinutes()
{
return this._durationInMinutes.HasValue;
}
/// <summary>
/// Gets and sets the property Enabled.
/// <para>
/// Whether instant booking is enabled or not.
/// </para>
/// </summary>
public bool Enabled
{
get { return this._enabled.GetValueOrDefault(); }
set { this._enabled = value; }
}
// Check to see if Enabled property is set
internal bool IsSetEnabled()
{
return this._enabled.HasValue;
}
}
} | 79 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The Certificate Authority can't issue or revoke a certificate.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InvalidCertificateAuthorityException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new InvalidCertificateAuthorityException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InvalidCertificateAuthorityException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InvalidCertificateAuthorityException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InvalidCertificateAuthorityException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InvalidCertificateAuthorityException
/// </summary>
/// <param name="innerException"></param>
public InvalidCertificateAuthorityException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InvalidCertificateAuthorityException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidCertificateAuthorityException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InvalidCertificateAuthorityException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidCertificateAuthorityException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the InvalidCertificateAuthorityException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected InvalidCertificateAuthorityException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The device is in an invalid state.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InvalidDeviceException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new InvalidDeviceException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InvalidDeviceException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InvalidDeviceException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InvalidDeviceException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InvalidDeviceException
/// </summary>
/// <param name="innerException"></param>
public InvalidDeviceException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InvalidDeviceException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidDeviceException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InvalidDeviceException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidDeviceException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the InvalidDeviceException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected InvalidDeviceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// A password in SecretsManager is in an invalid state.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InvalidSecretsManagerResourceException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new InvalidSecretsManagerResourceException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InvalidSecretsManagerResourceException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InvalidSecretsManagerResourceException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InvalidSecretsManagerResourceException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InvalidSecretsManagerResourceException
/// </summary>
/// <param name="innerException"></param>
public InvalidSecretsManagerResourceException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InvalidSecretsManagerResourceException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidSecretsManagerResourceException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InvalidSecretsManagerResourceException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidSecretsManagerResourceException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the InvalidSecretsManagerResourceException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected InvalidSecretsManagerResourceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The service linked role is locked for deletion.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InvalidServiceLinkedRoleStateException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new InvalidServiceLinkedRoleStateException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InvalidServiceLinkedRoleStateException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InvalidServiceLinkedRoleStateException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InvalidServiceLinkedRoleStateException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InvalidServiceLinkedRoleStateException
/// </summary>
/// <param name="innerException"></param>
public InvalidServiceLinkedRoleStateException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InvalidServiceLinkedRoleStateException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidServiceLinkedRoleStateException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InvalidServiceLinkedRoleStateException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidServiceLinkedRoleStateException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the InvalidServiceLinkedRoleStateException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected InvalidServiceLinkedRoleStateException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The attempt to update a user is invalid due to the user's current status.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class InvalidUserStatusException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new InvalidUserStatusException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public InvalidUserStatusException(string message)
: base(message) {}
/// <summary>
/// Construct instance of InvalidUserStatusException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public InvalidUserStatusException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of InvalidUserStatusException
/// </summary>
/// <param name="innerException"></param>
public InvalidUserStatusException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of InvalidUserStatusException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidUserStatusException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of InvalidUserStatusException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public InvalidUserStatusException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the InvalidUserStatusException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected InvalidUserStatusException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The IP endpoint and protocol for calling.
/// </summary>
public partial class IPDialIn
{
private CommsProtocol _commsProtocol;
private string _endpoint;
/// <summary>
/// Gets and sets the property CommsProtocol.
/// <para>
/// The protocol, including SIP, SIPS, and H323.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public CommsProtocol CommsProtocol
{
get { return this._commsProtocol; }
set { this._commsProtocol = value; }
}
// Check to see if CommsProtocol property is set
internal bool IsSetCommsProtocol()
{
return this._commsProtocol != null;
}
/// <summary>
/// Gets and sets the property Endpoint.
/// <para>
/// The IP address.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=256)]
public string Endpoint
{
get { return this._endpoint; }
set { this._endpoint = value; }
}
// Check to see if Endpoint property is set
internal bool IsSetEndpoint()
{
return this._endpoint != null;
}
}
} | 78 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// You are performing an action that would put you beyond your account's limits.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class LimitExceededException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new LimitExceededException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public LimitExceededException(string message)
: base(message) {}
/// <summary>
/// Construct instance of LimitExceededException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public LimitExceededException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of LimitExceededException
/// </summary>
/// <param name="innerException"></param>
public LimitExceededException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of LimitExceededException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public LimitExceededException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of LimitExceededException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public LimitExceededException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the LimitExceededException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected LimitExceededException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListBusinessReportSchedules operation.
/// Lists the details of the schedules that a user configured. A download URL of the report
/// associated with each schedule is returned every time this action is called. A new
/// download URL is returned each time, and is valid for 24 hours.
/// </summary>
public partial class ListBusinessReportSchedulesRequest : AmazonAlexaForBusinessRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of schedules listed in the call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to list the remaining schedules from the previous API call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 81 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListBusinessReportSchedules operation.
/// </summary>
public partial class ListBusinessReportSchedulesResponse : AmazonWebServiceResponse
{
private List<BusinessReportSchedule> _businessReportSchedules = new List<BusinessReportSchedule>();
private string _nextToken;
/// <summary>
/// Gets and sets the property BusinessReportSchedules.
/// <para>
/// The schedule of the reports.
/// </para>
/// </summary>
public List<BusinessReportSchedule> BusinessReportSchedules
{
get { return this._businessReportSchedules; }
set { this._businessReportSchedules = value; }
}
// Check to see if BusinessReportSchedules property is set
internal bool IsSetBusinessReportSchedules()
{
return this._businessReportSchedules != null && this._businessReportSchedules.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to list the remaining schedules from the previous API call.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListConferenceProviders operation.
/// Lists conference providers under a specific AWS account.
/// </summary>
public partial class ListConferenceProvidersRequest : AmazonAlexaForBusinessRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of conference providers to be returned, per paginated calls.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 79 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListConferenceProviders operation.
/// </summary>
public partial class ListConferenceProvidersResponse : AmazonWebServiceResponse
{
private List<ConferenceProvider> _conferenceProviders = new List<ConferenceProvider>();
private string _nextToken;
/// <summary>
/// Gets and sets the property ConferenceProviders.
/// <para>
/// The conference providers.
/// </para>
/// </summary>
public List<ConferenceProvider> ConferenceProviders
{
get { return this._conferenceProviders; }
set { this._conferenceProviders = value; }
}
// Check to see if ConferenceProviders property is set
internal bool IsSetConferenceProviders()
{
return this._conferenceProviders != null && this._conferenceProviders.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListDeviceEvents operation.
/// Lists the device event history, including device connection status, for up to 30 days.
/// </summary>
public partial class ListDeviceEventsRequest : AmazonAlexaForBusinessRequest
{
private string _deviceArn;
private DeviceEventType _eventType;
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of a device.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
/// <summary>
/// Gets and sets the property EventType.
/// <para>
/// The event type to filter device events. If EventType isn't specified, this returns
/// a list of all device events in reverse chronological order. If EventType is specified,
/// this returns a list of device events for that EventType in reverse chronological order.
///
/// </para>
/// </summary>
public DeviceEventType EventType
{
get { return this._eventType; }
set { this._eventType = value; }
}
// Check to see if EventType property is set
internal bool IsSetEventType()
{
return this._eventType != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to include in the response. The default value is 50.
/// If more results exist than the specified MaxResults value, a token is included in
/// the response so that the remaining results can be retrieved.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// An optional token returned from a prior request. Use this token for pagination of
/// results from this action. If this parameter is specified, the response only includes
/// results beyond the token, up to the value specified by MaxResults. When the end of
/// results is reached, the response has a value of null.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 126 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListDeviceEvents operation.
/// </summary>
public partial class ListDeviceEventsResponse : AmazonWebServiceResponse
{
private List<DeviceEvent> _deviceEvents = new List<DeviceEvent>();
private string _nextToken;
/// <summary>
/// Gets and sets the property DeviceEvents.
/// <para>
/// The device events requested for the device ARN.
/// </para>
/// </summary>
public List<DeviceEvent> DeviceEvents
{
get { return this._deviceEvents; }
set { this._deviceEvents = value; }
}
// Check to see if DeviceEvents property is set
internal bool IsSetDeviceEvents()
{
return this._deviceEvents != null && this._deviceEvents.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token returned to indicate that there is more data available.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListGatewayGroups operation.
/// Retrieves a list of gateway group summaries. Use GetGatewayGroup to retrieve details
/// of a specific gateway group.
/// </summary>
public partial class ListGatewayGroupsRequest : AmazonAlexaForBusinessRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of gateway group summaries to return. The default is 50.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to paginate though multiple pages of gateway group summaries.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 80 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListGatewayGroups operation.
/// </summary>
public partial class ListGatewayGroupsResponse : AmazonWebServiceResponse
{
private List<GatewayGroupSummary> _gatewayGroups = new List<GatewayGroupSummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property GatewayGroups.
/// <para>
/// The gateway groups in the list.
/// </para>
/// </summary>
public List<GatewayGroupSummary> GatewayGroups
{
get { return this._gatewayGroups; }
set { this._gatewayGroups = value; }
}
// Check to see if GatewayGroups property is set
internal bool IsSetGatewayGroups()
{
return this._gatewayGroups != null && this._gatewayGroups.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to paginate though multiple pages of gateway group summaries.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListGateways operation.
/// Retrieves a list of gateway summaries. Use GetGateway to retrieve details of a specific
/// gateway. An optional gateway group ARN can be provided to only retrieve gateway summaries
/// of gateways that are associated with that gateway group ARN.
/// </summary>
public partial class ListGatewaysRequest : AmazonAlexaForBusinessRequest
{
private string _gatewayGroupArn;
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property GatewayGroupArn.
/// <para>
/// The gateway group ARN for which to list gateways.
/// </para>
/// </summary>
public string GatewayGroupArn
{
get { return this._gatewayGroupArn; }
set { this._gatewayGroupArn = value; }
}
// Check to see if GatewayGroupArn property is set
internal bool IsSetGatewayGroupArn()
{
return this._gatewayGroupArn != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of gateway summaries to return. The default is 50.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to paginate though multiple pages of gateway summaries.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 100 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListGateways operation.
/// </summary>
public partial class ListGatewaysResponse : AmazonWebServiceResponse
{
private List<GatewaySummary> _gateways = new List<GatewaySummary>();
private string _nextToken;
/// <summary>
/// Gets and sets the property Gateways.
/// <para>
/// The gateways in the list.
/// </para>
/// </summary>
public List<GatewaySummary> Gateways
{
get { return this._gateways; }
set { this._gateways = value; }
}
// Check to see if Gateways property is set
internal bool IsSetGateways()
{
return this._gateways != null && this._gateways.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token used to paginate though multiple pages of gateway summaries.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListSkills operation.
/// Lists all enabled skills in a specific skill group.
/// </summary>
public partial class ListSkillsRequest : AmazonAlexaForBusinessRequest
{
private EnablementTypeFilter _enablementType;
private int? _maxResults;
private string _nextToken;
private string _skillGroupArn;
private SkillTypeFilter _skillType;
/// <summary>
/// Gets and sets the property EnablementType.
/// <para>
/// Whether the skill is enabled under the user's account.
/// </para>
/// </summary>
public EnablementTypeFilter EnablementType
{
get { return this._enablementType; }
set { this._enablementType = value; }
}
// Check to see if EnablementType property is set
internal bool IsSetEnablementType()
{
return this._enablementType != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to include in the response. If more results exist than
/// the specified <code>MaxResults</code> value, a token is included in the response so
/// that the remaining results can be retrieved.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=10)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// An optional token returned from a prior request. Use this token for pagination of
/// results from this action. If this parameter is specified, the response includes only
/// results beyond the token, up to the value specified by <code>MaxResults</code>.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SkillGroupArn.
/// <para>
/// The ARN of the skill group for which to list enabled skills.
/// </para>
/// </summary>
public string SkillGroupArn
{
get { return this._skillGroupArn; }
set { this._skillGroupArn = value; }
}
// Check to see if SkillGroupArn property is set
internal bool IsSetSkillGroupArn()
{
return this._skillGroupArn != null;
}
/// <summary>
/// Gets and sets the property SkillType.
/// <para>
/// Whether the skill is publicly available or is a private skill.
/// </para>
/// </summary>
public SkillTypeFilter SkillType
{
get { return this._skillType; }
set { this._skillType = value; }
}
// Check to see if SkillType property is set
internal bool IsSetSkillType()
{
return this._skillType != null;
}
}
} | 140 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListSkills operation.
/// </summary>
public partial class ListSkillsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SkillSummary> _skillSummaries = new List<SkillSummary>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token returned to indicate that there is more data available.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SkillSummaries.
/// <para>
/// The list of enabled skills requested. Required.
/// </para>
/// </summary>
public List<SkillSummary> SkillSummaries
{
get { return this._skillSummaries; }
set { this._skillSummaries = value; }
}
// Check to see if SkillSummaries property is set
internal bool IsSetSkillSummaries()
{
return this._skillSummaries != null && this._skillSummaries.Count > 0;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListSkillsStoreCategories operation.
/// Lists all categories in the Alexa skill store.
/// </summary>
public partial class ListSkillsStoreCategoriesRequest : AmazonAlexaForBusinessRequest
{
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of categories returned, per paginated calls.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 79 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListSkillsStoreCategories operation.
/// </summary>
public partial class ListSkillsStoreCategoriesResponse : AmazonWebServiceResponse
{
private List<Category> _categoryList = new List<Category>();
private string _nextToken;
/// <summary>
/// Gets and sets the property CategoryList.
/// <para>
/// The list of categories.
/// </para>
/// </summary>
public List<Category> CategoryList
{
get { return this._categoryList; }
set { this._categoryList = value; }
}
// Check to see if CategoryList property is set
internal bool IsSetCategoryList()
{
return this._categoryList != null && this._categoryList.Count > 0;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListSkillsStoreSkillsByCategory operation.
/// Lists all skills in the Alexa skill store by category.
/// </summary>
public partial class ListSkillsStoreSkillsByCategoryRequest : AmazonAlexaForBusinessRequest
{
private long? _categoryId;
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property CategoryId.
/// <para>
/// The category ID for which the skills are being retrieved from the skill store.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1)]
public long CategoryId
{
get { return this._categoryId.GetValueOrDefault(); }
set { this._categoryId = value; }
}
// Check to see if CategoryId property is set
internal bool IsSetCategoryId()
{
return this._categoryId.HasValue;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of skills returned per paginated calls.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=10)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 99 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListSkillsStoreSkillsByCategory operation.
/// </summary>
public partial class ListSkillsStoreSkillsByCategoryResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SkillsStoreSkill> _skillsStoreSkills = new List<SkillsStoreSkill>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SkillsStoreSkills.
/// <para>
/// The skill store skills.
/// </para>
/// </summary>
public List<SkillsStoreSkill> SkillsStoreSkills
{
get { return this._skillsStoreSkills; }
set { this._skillsStoreSkills = value; }
}
// Check to see if SkillsStoreSkills property is set
internal bool IsSetSkillsStoreSkills()
{
return this._skillsStoreSkills != null && this._skillsStoreSkills.Count > 0;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListSmartHomeAppliances operation.
/// Lists all of the smart home appliances associated with a room.
/// </summary>
public partial class ListSmartHomeAppliancesRequest : AmazonAlexaForBusinessRequest
{
private int? _maxResults;
private string _nextToken;
private string _roomArn;
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of appliances to be returned, per paginated calls.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The room that the appliances are associated with.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
}
} | 99 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListSmartHomeAppliances operation.
/// </summary>
public partial class ListSmartHomeAppliancesResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<SmartHomeAppliance> _smartHomeAppliances = new List<SmartHomeAppliance>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The tokens used for pagination.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property SmartHomeAppliances.
/// <para>
/// The smart home appliances.
/// </para>
/// </summary>
public List<SmartHomeAppliance> SmartHomeAppliances
{
get { return this._smartHomeAppliances; }
set { this._smartHomeAppliances = value; }
}
// Check to see if SmartHomeAppliances property is set
internal bool IsSetSmartHomeAppliances()
{
return this._smartHomeAppliances != null && this._smartHomeAppliances.Count > 0;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the ListTags operation.
/// Lists all tags for the specified resource.
/// </summary>
public partial class ListTagsRequest : AmazonAlexaForBusinessRequest
{
private string _arn;
private int? _maxResults;
private string _nextToken;
/// <summary>
/// Gets and sets the property Arn.
/// <para>
/// The ARN of the specified resource for which to list tags.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string Arn
{
get { return this._arn; }
set { this._arn = value; }
}
// Check to see if Arn property is set
internal bool IsSetArn()
{
return this._arn != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to include in the response. If more results exist than
/// the specified <code>MaxResults</code> value, a token is included in the response so
/// that the remaining results can be retrieved.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=50)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// An optional token returned from a prior request. Use this token for pagination of
/// results from this action. If this parameter is specified, the response includes only
/// results beyond the token, up to the value specified by <code>MaxResults</code>.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
}
} | 103 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the ListTags operation.
/// </summary>
public partial class ListTagsResponse : AmazonWebServiceResponse
{
private string _nextToken;
private List<Tag> _tags = new List<Tag>();
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token returned to indicate that there is more data available.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1100)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// The tags requested for the specified resource.
/// </para>
/// </summary>
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
}
} | 77 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The values that indicate whether a pin is always required (YES), never required (NO),
/// or OPTIONAL.
///
/// <ul> <li>
/// <para>
/// If YES, Alexa will always ask for a meeting pin.
/// </para>
/// </li> <li>
/// <para>
/// If NO, Alexa will never ask for a meeting pin.
/// </para>
/// </li> <li>
/// <para>
/// If OPTIONAL, Alexa will ask if you have a meeting pin and if the customer responds
/// with yes, it will ask for the meeting pin.
/// </para>
/// </li> </ul>
/// </summary>
public partial class MeetingSetting
{
private RequirePin _requirePin;
/// <summary>
/// Gets and sets the property RequirePin.
/// <para>
/// The values that indicate whether the pin is always required.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public RequirePin RequirePin
{
get { return this._requirePin; }
set { this._requirePin = value; }
}
// Check to see if RequirePin property is set
internal bool IsSetRequirePin()
{
return this._requirePin != null;
}
}
} | 74 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The name sent in the request is already in use.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class NameInUseException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new NameInUseException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public NameInUseException(string message)
: base(message) {}
/// <summary>
/// Construct instance of NameInUseException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public NameInUseException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of NameInUseException
/// </summary>
/// <param name="innerException"></param>
public NameInUseException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of NameInUseException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public NameInUseException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of NameInUseException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public NameInUseException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the NameInUseException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected NameInUseException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The network profile associated with a device.
/// </summary>
public partial class NetworkProfile
{
private string _certificateAuthorityArn;
private string _currentPassword;
private string _description;
private NetworkEapMethod _eapMethod;
private string _networkProfileArn;
private string _networkProfileName;
private string _nextPassword;
private NetworkSecurityType _securityType;
private string _ssid;
private List<string> _trustAnchors = new List<string>();
/// <summary>
/// Gets and sets the property CertificateAuthorityArn.
/// <para>
/// The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager
/// (ACM). This is used to issue certificates to the devices.
/// </para>
/// </summary>
public string CertificateAuthorityArn
{
get { return this._certificateAuthorityArn; }
set { this._certificateAuthorityArn = value; }
}
// Check to see if CertificateAuthorityArn property is set
internal bool IsSetCertificateAuthorityArn()
{
return this._certificateAuthorityArn != null;
}
/// <summary>
/// Gets and sets the property CurrentPassword.
/// <para>
/// The current password of the Wi-Fi network.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=5, Max=128)]
public string CurrentPassword
{
get { return this._currentPassword; }
set { this._currentPassword = value; }
}
// Check to see if CurrentPassword property is set
internal bool IsSetCurrentPassword()
{
return this._currentPassword != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// Detailed information about a device's network profile.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property EapMethod.
/// <para>
/// The authentication standard that is used in the EAP framework. Currently, EAP_TLS
/// is supported.
/// </para>
/// </summary>
public NetworkEapMethod EapMethod
{
get { return this._eapMethod; }
set { this._eapMethod = value; }
}
// Check to see if EapMethod property is set
internal bool IsSetEapMethod()
{
return this._eapMethod != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileArn.
/// <para>
/// The ARN of the network profile associated with a device.
/// </para>
/// </summary>
public string NetworkProfileArn
{
get { return this._networkProfileArn; }
set { this._networkProfileArn = value; }
}
// Check to see if NetworkProfileArn property is set
internal bool IsSetNetworkProfileArn()
{
return this._networkProfileArn != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileName.
/// <para>
/// The name of the network profile associated with a device.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string NetworkProfileName
{
get { return this._networkProfileName; }
set { this._networkProfileName = value; }
}
// Check to see if NetworkProfileName property is set
internal bool IsSetNetworkProfileName()
{
return this._networkProfileName != null;
}
/// <summary>
/// Gets and sets the property NextPassword.
/// <para>
/// The next, or subsequent, password of the Wi-Fi network. This password is asynchronously
/// transmitted to the device and is used when the password of the network changes to
/// NextPassword.
/// </para>
/// </summary>
[AWSProperty(Sensitive=true, Min=0, Max=128)]
public string NextPassword
{
get { return this._nextPassword; }
set { this._nextPassword = value; }
}
// Check to see if NextPassword property is set
internal bool IsSetNextPassword()
{
return this._nextPassword != null;
}
/// <summary>
/// Gets and sets the property SecurityType.
/// <para>
/// The security type of the Wi-Fi network. This can be WPA2_ENTERPRISE, WPA2_PSK, WPA_PSK,
/// WEP, or OPEN.
/// </para>
/// </summary>
public NetworkSecurityType SecurityType
{
get { return this._securityType; }
set { this._securityType = value; }
}
// Check to see if SecurityType property is set
internal bool IsSetSecurityType()
{
return this._securityType != null;
}
/// <summary>
/// Gets and sets the property Ssid.
/// <para>
/// The SSID of the Wi-Fi network.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=32)]
public string Ssid
{
get { return this._ssid; }
set { this._ssid = value; }
}
// Check to see if Ssid property is set
internal bool IsSetSsid()
{
return this._ssid != null;
}
/// <summary>
/// Gets and sets the property TrustAnchors.
/// <para>
/// The root certificates of your authentication server, which is installed on your devices
/// and used to trust your authentication server during EAP negotiation.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=5)]
public List<string> TrustAnchors
{
get { return this._trustAnchors; }
set { this._trustAnchors = value; }
}
// Check to see if TrustAnchors property is set
internal bool IsSetTrustAnchors()
{
return this._trustAnchors != null && this._trustAnchors.Count > 0;
}
}
} | 240 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The data associated with a network profile.
/// </summary>
public partial class NetworkProfileData
{
private string _certificateAuthorityArn;
private string _description;
private NetworkEapMethod _eapMethod;
private string _networkProfileArn;
private string _networkProfileName;
private NetworkSecurityType _securityType;
private string _ssid;
/// <summary>
/// Gets and sets the property CertificateAuthorityArn.
/// <para>
/// The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager
/// (ACM). This is used to issue certificates to the devices.
/// </para>
/// </summary>
public string CertificateAuthorityArn
{
get { return this._certificateAuthorityArn; }
set { this._certificateAuthorityArn = value; }
}
// Check to see if CertificateAuthorityArn property is set
internal bool IsSetCertificateAuthorityArn()
{
return this._certificateAuthorityArn != null;
}
/// <summary>
/// Gets and sets the property Description.
/// <para>
/// Detailed information about a device's network profile.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=200)]
public string Description
{
get { return this._description; }
set { this._description = value; }
}
// Check to see if Description property is set
internal bool IsSetDescription()
{
return this._description != null;
}
/// <summary>
/// Gets and sets the property EapMethod.
/// <para>
/// The authentication standard that is used in the EAP framework. Currently, EAP_TLS
/// is supported.
/// </para>
/// </summary>
public NetworkEapMethod EapMethod
{
get { return this._eapMethod; }
set { this._eapMethod = value; }
}
// Check to see if EapMethod property is set
internal bool IsSetEapMethod()
{
return this._eapMethod != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileArn.
/// <para>
/// The ARN of the network profile associated with a device.
/// </para>
/// </summary>
public string NetworkProfileArn
{
get { return this._networkProfileArn; }
set { this._networkProfileArn = value; }
}
// Check to see if NetworkProfileArn property is set
internal bool IsSetNetworkProfileArn()
{
return this._networkProfileArn != null;
}
/// <summary>
/// Gets and sets the property NetworkProfileName.
/// <para>
/// The name of the network profile associated with a device.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string NetworkProfileName
{
get { return this._networkProfileName; }
set { this._networkProfileName = value; }
}
// Check to see if NetworkProfileName property is set
internal bool IsSetNetworkProfileName()
{
return this._networkProfileName != null;
}
/// <summary>
/// Gets and sets the property SecurityType.
/// <para>
/// The security type of the Wi-Fi network. This can be WPA2_ENTERPRISE, WPA2_PSK, WPA_PSK,
/// WEP, or OPEN.
/// </para>
/// </summary>
public NetworkSecurityType SecurityType
{
get { return this._securityType; }
set { this._securityType = value; }
}
// Check to see if SecurityType property is set
internal bool IsSetSecurityType()
{
return this._securityType != null;
}
/// <summary>
/// Gets and sets the property Ssid.
/// <para>
/// The SSID of the Wi-Fi network.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=32)]
public string Ssid
{
get { return this._ssid; }
set { this._ssid = value; }
}
// Check to see if Ssid property is set
internal bool IsSetSsid()
{
return this._ssid != null;
}
}
} | 177 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The resource is not found.
/// </summary>
#if !NETSTANDARD
[Serializable]
#endif
public partial class NotFoundException : AmazonAlexaForBusinessException
{
/// <summary>
/// Constructs a new NotFoundException with the specified error
/// message.
/// </summary>
/// <param name="message">
/// Describes the error encountered.
/// </param>
public NotFoundException(string message)
: base(message) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public NotFoundException(string message, Exception innerException)
: base(message, innerException) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="innerException"></param>
public NotFoundException(Exception innerException)
: base(innerException) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public NotFoundException(string message, Exception innerException, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, innerException, errorType, errorCode, requestId, statusCode) {}
/// <summary>
/// Construct instance of NotFoundException
/// </summary>
/// <param name="message"></param>
/// <param name="errorType"></param>
/// <param name="errorCode"></param>
/// <param name="requestId"></param>
/// <param name="statusCode"></param>
public NotFoundException(string message, ErrorType errorType, string errorCode, string requestId, HttpStatusCode statusCode)
: base(message, errorType, errorCode, requestId, statusCode) {}
#if !NETSTANDARD
/// <summary>
/// Constructs a new instance of the NotFoundException class with serialized data.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is null. </exception>
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is null or <see cref="P:System.Exception.HResult" /> is zero (0). </exception>
protected NotFoundException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
: base(info, context)
{
}
/// <summary>
/// Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with information about the exception.
/// </summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is a null reference (Nothing in Visual Basic). </exception>
#if BCL35
[System.Security.Permissions.SecurityPermission(
System.Security.Permissions.SecurityAction.LinkDemand,
Flags = System.Security.Permissions.SecurityPermissionFlag.SerializationFormatter)]
#endif
[System.Security.SecurityCritical]
// These FxCop rules are giving false-positives for this method
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2134:MethodsMustOverrideWithConsistentTransparencyFxCopRule")]
public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
{
base.GetObjectData(info, context);
}
#endif
}
} | 124 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The phone number for the contact containing the raw number and phone number type.
/// </summary>
public partial class PhoneNumber
{
private string _number;
private PhoneNumberType _type;
/// <summary>
/// Gets and sets the property Number.
/// <para>
/// The raw value of the phone number.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true, Min=0, Max=50)]
public string Number
{
get { return this._number; }
set { this._number = value; }
}
// Check to see if Number property is set
internal bool IsSetNumber()
{
return this._number != null;
}
/// <summary>
/// Gets and sets the property Type.
/// <para>
/// The type of the phone number.
/// </para>
/// </summary>
[AWSProperty(Required=true, Sensitive=true)]
public PhoneNumberType Type
{
get { return this._type; }
set { this._type = value; }
}
// Check to see if Type property is set
internal bool IsSetType()
{
return this._type != null;
}
}
} | 78 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
///
/// </summary>
public partial class ProactiveJoin
{
private bool? _enabledByMotion;
/// <summary>
/// Gets and sets the property EnabledByMotion.
/// </summary>
public bool EnabledByMotion
{
get { return this._enabledByMotion.GetValueOrDefault(); }
set { this._enabledByMotion = value; }
}
// Check to see if EnabledByMotion property is set
internal bool IsSetEnabledByMotion()
{
return this._enabledByMotion.HasValue;
}
}
} | 54 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// A room profile with attributes.
/// </summary>
public partial class Profile
{
private string _address;
private string _addressBookArn;
private bool? _dataRetentionOptIn;
private DistanceUnit _distanceUnit;
private bool? _isDefault;
private string _locale;
private int? _maxVolumeLimit;
private MeetingRoomConfiguration _meetingRoomConfiguration;
private string _profileArn;
private string _profileName;
private bool? _pstnEnabled;
private bool? _setupModeDisabled;
private TemperatureUnit _temperatureUnit;
private string _timezone;
private WakeWord _wakeWord;
/// <summary>
/// Gets and sets the property Address.
/// <para>
/// The address of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=500)]
public string Address
{
get { return this._address; }
set { this._address = value; }
}
// Check to see if Address property is set
internal bool IsSetAddress()
{
return this._address != null;
}
/// <summary>
/// Gets and sets the property AddressBookArn.
/// <para>
/// The ARN of the address book.
/// </para>
/// </summary>
public string AddressBookArn
{
get { return this._addressBookArn; }
set { this._addressBookArn = value; }
}
// Check to see if AddressBookArn property is set
internal bool IsSetAddressBookArn()
{
return this._addressBookArn != null;
}
/// <summary>
/// Gets and sets the property DataRetentionOptIn.
/// <para>
/// Whether data retention of the profile is enabled.
/// </para>
/// </summary>
public bool DataRetentionOptIn
{
get { return this._dataRetentionOptIn.GetValueOrDefault(); }
set { this._dataRetentionOptIn = value; }
}
// Check to see if DataRetentionOptIn property is set
internal bool IsSetDataRetentionOptIn()
{
return this._dataRetentionOptIn.HasValue;
}
/// <summary>
/// Gets and sets the property DistanceUnit.
/// <para>
/// The distance unit of a room profile.
/// </para>
/// </summary>
public DistanceUnit DistanceUnit
{
get { return this._distanceUnit; }
set { this._distanceUnit = value; }
}
// Check to see if DistanceUnit property is set
internal bool IsSetDistanceUnit()
{
return this._distanceUnit != null;
}
/// <summary>
/// Gets and sets the property IsDefault.
/// <para>
/// Retrieves if the profile is default or not.
/// </para>
/// </summary>
public bool IsDefault
{
get { return this._isDefault.GetValueOrDefault(); }
set { this._isDefault = value; }
}
// Check to see if IsDefault property is set
internal bool IsSetIsDefault()
{
return this._isDefault.HasValue;
}
/// <summary>
/// Gets and sets the property Locale.
/// <para>
/// The locale of a room profile. (This is currently available only to a limited preview
/// audience.)
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=256)]
public string Locale
{
get { return this._locale; }
set { this._locale = value; }
}
// Check to see if Locale property is set
internal bool IsSetLocale()
{
return this._locale != null;
}
/// <summary>
/// Gets and sets the property MaxVolumeLimit.
/// <para>
/// The max volume limit of a room profile.
/// </para>
/// </summary>
public int MaxVolumeLimit
{
get { return this._maxVolumeLimit.GetValueOrDefault(); }
set { this._maxVolumeLimit = value; }
}
// Check to see if MaxVolumeLimit property is set
internal bool IsSetMaxVolumeLimit()
{
return this._maxVolumeLimit.HasValue;
}
/// <summary>
/// Gets and sets the property MeetingRoomConfiguration.
/// <para>
/// Meeting room settings of a room profile.
/// </para>
/// </summary>
public MeetingRoomConfiguration MeetingRoomConfiguration
{
get { return this._meetingRoomConfiguration; }
set { this._meetingRoomConfiguration = value; }
}
// Check to see if MeetingRoomConfiguration property is set
internal bool IsSetMeetingRoomConfiguration()
{
return this._meetingRoomConfiguration != null;
}
/// <summary>
/// Gets and sets the property ProfileArn.
/// <para>
/// The ARN of a room profile.
/// </para>
/// </summary>
public string ProfileArn
{
get { return this._profileArn; }
set { this._profileArn = value; }
}
// Check to see if ProfileArn property is set
internal bool IsSetProfileArn()
{
return this._profileArn != null;
}
/// <summary>
/// Gets and sets the property ProfileName.
/// <para>
/// The name of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string ProfileName
{
get { return this._profileName; }
set { this._profileName = value; }
}
// Check to see if ProfileName property is set
internal bool IsSetProfileName()
{
return this._profileName != null;
}
/// <summary>
/// Gets and sets the property PSTNEnabled.
/// <para>
/// The PSTN setting of a room profile.
/// </para>
/// </summary>
public bool PSTNEnabled
{
get { return this._pstnEnabled.GetValueOrDefault(); }
set { this._pstnEnabled = value; }
}
// Check to see if PSTNEnabled property is set
internal bool IsSetPSTNEnabled()
{
return this._pstnEnabled.HasValue;
}
/// <summary>
/// Gets and sets the property SetupModeDisabled.
/// <para>
/// The setup mode of a room profile.
/// </para>
/// </summary>
public bool SetupModeDisabled
{
get { return this._setupModeDisabled.GetValueOrDefault(); }
set { this._setupModeDisabled = value; }
}
// Check to see if SetupModeDisabled property is set
internal bool IsSetSetupModeDisabled()
{
return this._setupModeDisabled.HasValue;
}
/// <summary>
/// Gets and sets the property TemperatureUnit.
/// <para>
/// The temperature unit of a room profile.
/// </para>
/// </summary>
public TemperatureUnit TemperatureUnit
{
get { return this._temperatureUnit; }
set { this._temperatureUnit = value; }
}
// Check to see if TemperatureUnit property is set
internal bool IsSetTemperatureUnit()
{
return this._temperatureUnit != null;
}
/// <summary>
/// Gets and sets the property Timezone.
/// <para>
/// The time zone of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string Timezone
{
get { return this._timezone; }
set { this._timezone = value; }
}
// Check to see if Timezone property is set
internal bool IsSetTimezone()
{
return this._timezone != null;
}
/// <summary>
/// Gets and sets the property WakeWord.
/// <para>
/// The wake word of a room profile.
/// </para>
/// </summary>
public WakeWord WakeWord
{
get { return this._wakeWord; }
set { this._wakeWord = value; }
}
// Check to see if WakeWord property is set
internal bool IsSetWakeWord()
{
return this._wakeWord != null;
}
}
} | 328 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The data of a room profile.
/// </summary>
public partial class ProfileData
{
private string _address;
private DistanceUnit _distanceUnit;
private bool? _isDefault;
private string _locale;
private string _profileArn;
private string _profileName;
private TemperatureUnit _temperatureUnit;
private string _timezone;
private WakeWord _wakeWord;
/// <summary>
/// Gets and sets the property Address.
/// <para>
/// The address of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=500)]
public string Address
{
get { return this._address; }
set { this._address = value; }
}
// Check to see if Address property is set
internal bool IsSetAddress()
{
return this._address != null;
}
/// <summary>
/// Gets and sets the property DistanceUnit.
/// <para>
/// The distance unit of a room profile.
/// </para>
/// </summary>
public DistanceUnit DistanceUnit
{
get { return this._distanceUnit; }
set { this._distanceUnit = value; }
}
// Check to see if DistanceUnit property is set
internal bool IsSetDistanceUnit()
{
return this._distanceUnit != null;
}
/// <summary>
/// Gets and sets the property IsDefault.
/// <para>
/// Retrieves if the profile data is default or not.
/// </para>
/// </summary>
public bool IsDefault
{
get { return this._isDefault.GetValueOrDefault(); }
set { this._isDefault = value; }
}
// Check to see if IsDefault property is set
internal bool IsSetIsDefault()
{
return this._isDefault.HasValue;
}
/// <summary>
/// Gets and sets the property Locale.
/// <para>
/// The locale of a room profile. (This is currently available only to a limited preview
/// audience.)
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=256)]
public string Locale
{
get { return this._locale; }
set { this._locale = value; }
}
// Check to see if Locale property is set
internal bool IsSetLocale()
{
return this._locale != null;
}
/// <summary>
/// Gets and sets the property ProfileArn.
/// <para>
/// The ARN of a room profile.
/// </para>
/// </summary>
public string ProfileArn
{
get { return this._profileArn; }
set { this._profileArn = value; }
}
// Check to see if ProfileArn property is set
internal bool IsSetProfileArn()
{
return this._profileArn != null;
}
/// <summary>
/// Gets and sets the property ProfileName.
/// <para>
/// The name of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string ProfileName
{
get { return this._profileName; }
set { this._profileName = value; }
}
// Check to see if ProfileName property is set
internal bool IsSetProfileName()
{
return this._profileName != null;
}
/// <summary>
/// Gets and sets the property TemperatureUnit.
/// <para>
/// The temperature unit of a room profile.
/// </para>
/// </summary>
public TemperatureUnit TemperatureUnit
{
get { return this._temperatureUnit; }
set { this._temperatureUnit = value; }
}
// Check to see if TemperatureUnit property is set
internal bool IsSetTemperatureUnit()
{
return this._temperatureUnit != null;
}
/// <summary>
/// Gets and sets the property Timezone.
/// <para>
/// The time zone of a room profile.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=100)]
public string Timezone
{
get { return this._timezone; }
set { this._timezone = value; }
}
// Check to see if Timezone property is set
internal bool IsSetTimezone()
{
return this._timezone != null;
}
/// <summary>
/// Gets and sets the property WakeWord.
/// <para>
/// The wake word of a room profile.
/// </para>
/// </summary>
public WakeWord WakeWord
{
get { return this._wakeWord; }
set { this._wakeWord = value; }
}
// Check to see if WakeWord property is set
internal bool IsSetWakeWord()
{
return this._wakeWord != null;
}
}
} | 214 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// The information for public switched telephone network (PSTN) conferencing.
/// </summary>
public partial class PSTNDialIn
{
private string _countryCode;
private string _oneClickIdDelay;
private string _oneClickPinDelay;
private string _phoneNumber;
/// <summary>
/// Gets and sets the property CountryCode.
/// <para>
/// The zip code.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string CountryCode
{
get { return this._countryCode; }
set { this._countryCode = value; }
}
// Check to see if CountryCode property is set
internal bool IsSetCountryCode()
{
return this._countryCode != null;
}
/// <summary>
/// Gets and sets the property OneClickIdDelay.
/// <para>
/// The delay duration before Alexa enters the conference ID with dual-tone multi-frequency
/// (DTMF). Each number on the dial pad corresponds to a DTMF tone, which is how we send
/// data over the telephone network.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=2)]
public string OneClickIdDelay
{
get { return this._oneClickIdDelay; }
set { this._oneClickIdDelay = value; }
}
// Check to see if OneClickIdDelay property is set
internal bool IsSetOneClickIdDelay()
{
return this._oneClickIdDelay != null;
}
/// <summary>
/// Gets and sets the property OneClickPinDelay.
/// <para>
/// The delay duration before Alexa enters the conference pin with dual-tone multi-frequency
/// (DTMF). Each number on the dial pad corresponds to a DTMF tone, which is how we send
/// data over the telephone network.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=2)]
public string OneClickPinDelay
{
get { return this._oneClickPinDelay; }
set { this._oneClickPinDelay = value; }
}
// Check to see if OneClickPinDelay property is set
internal bool IsSetOneClickPinDelay()
{
return this._oneClickPinDelay != null;
}
/// <summary>
/// Gets and sets the property PhoneNumber.
/// <para>
/// The phone number to call to join the conference.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string PhoneNumber
{
get { return this._phoneNumber; }
set { this._phoneNumber = value; }
}
// Check to see if PhoneNumber property is set
internal bool IsSetPhoneNumber()
{
return this._phoneNumber != null;
}
}
} | 122 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the PutConferencePreference operation.
/// Sets the conference preferences on a specific conference provider at the account level.
/// </summary>
public partial class PutConferencePreferenceRequest : AmazonAlexaForBusinessRequest
{
private ConferencePreference _conferencePreference;
/// <summary>
/// Gets and sets the property ConferencePreference.
/// <para>
/// The conference preference of a specific conference provider.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public ConferencePreference ConferencePreference
{
get { return this._conferencePreference; }
set { this._conferencePreference = value; }
}
// Check to see if ConferencePreference property is set
internal bool IsSetConferencePreference()
{
return this._conferencePreference != null;
}
}
} | 59 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the PutConferencePreference operation.
/// </summary>
public partial class PutConferencePreferenceResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the PutInvitationConfiguration operation.
/// Configures the email template for the user enrollment invitation with the specified
/// attributes.
/// </summary>
public partial class PutInvitationConfigurationRequest : AmazonAlexaForBusinessRequest
{
private string _contactEmail;
private string _organizationName;
private List<string> _privateSkillIds = new List<string>();
/// <summary>
/// Gets and sets the property ContactEmail.
/// <para>
/// The email ID of the organization or individual contact that the enrolled user can
/// use.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=128)]
public string ContactEmail
{
get { return this._contactEmail; }
set { this._contactEmail = value; }
}
// Check to see if ContactEmail property is set
internal bool IsSetContactEmail()
{
return this._contactEmail != null;
}
/// <summary>
/// Gets and sets the property OrganizationName.
/// <para>
/// The name of the organization sending the enrollment invite to a user.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=100)]
public string OrganizationName
{
get { return this._organizationName; }
set { this._organizationName = value; }
}
// Check to see if OrganizationName property is set
internal bool IsSetOrganizationName()
{
return this._organizationName != null;
}
/// <summary>
/// Gets and sets the property PrivateSkillIds.
/// <para>
/// The list of private skill IDs that you want to recommend to the user to enable in
/// the invitation.
/// </para>
/// </summary>
[AWSProperty(Min=0, Max=3)]
public List<string> PrivateSkillIds
{
get { return this._privateSkillIds; }
set { this._privateSkillIds = value; }
}
// Check to see if PrivateSkillIds property is set
internal bool IsSetPrivateSkillIds()
{
return this._privateSkillIds != null && this._privateSkillIds.Count > 0;
}
}
} | 102 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the PutInvitationConfiguration operation.
/// </summary>
public partial class PutInvitationConfigurationResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the PutRoomSkillParameter operation.
/// Updates room skill parameter details by room, skill, and parameter key ID. Not all
/// skills have a room skill parameter.
/// </summary>
public partial class PutRoomSkillParameterRequest : AmazonAlexaForBusinessRequest
{
private string _roomArn;
private RoomSkillParameter _roomSkillParameter;
private string _skillId;
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The ARN of the room associated with the room skill parameter. Required.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property RoomSkillParameter.
/// <para>
/// The updated room skill parameter. Required.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public RoomSkillParameter RoomSkillParameter
{
get { return this._roomSkillParameter; }
set { this._roomSkillParameter = value; }
}
// Check to see if RoomSkillParameter property is set
internal bool IsSetRoomSkillParameter()
{
return this._roomSkillParameter != null;
}
/// <summary>
/// Gets and sets the property SkillId.
/// <para>
/// The ARN of the skill associated with the room skill parameter. Required.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string SkillId
{
get { return this._skillId; }
set { this._skillId = value; }
}
// Check to see if SkillId property is set
internal bool IsSetSkillId()
{
return this._skillId != null;
}
}
} | 99 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the PutRoomSkillParameter operation.
/// </summary>
public partial class PutRoomSkillParameterResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the PutSkillAuthorization operation.
/// </summary>
public partial class PutSkillAuthorizationResponse : AmazonWebServiceResponse
{
}
} | 38 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// Container for the parameters to the RegisterAVSDevice operation.
/// Registers an Alexa-enabled device built by an Original Equipment Manufacturer (OEM)
/// using Alexa Voice Service (AVS).
/// </summary>
public partial class RegisterAVSDeviceRequest : AmazonAlexaForBusinessRequest
{
private string _amazonId;
private string _clientId;
private string _deviceSerialNumber;
private string _productId;
private string _roomArn;
private List<Tag> _tags = new List<Tag>();
private string _userCode;
/// <summary>
/// Gets and sets the property AmazonId.
/// <para>
/// The device type ID for your AVS device generated by Amazon when the OEM creates a
/// new product on Amazon's Developer Console.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string AmazonId
{
get { return this._amazonId; }
set { this._amazonId = value; }
}
// Check to see if AmazonId property is set
internal bool IsSetAmazonId()
{
return this._amazonId != null;
}
/// <summary>
/// Gets and sets the property ClientId.
/// <para>
/// The client ID of the OEM used for code-based linking authorization on an AVS device.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ClientId
{
get { return this._clientId; }
set { this._clientId = value; }
}
// Check to see if ClientId property is set
internal bool IsSetClientId()
{
return this._clientId != null;
}
/// <summary>
/// Gets and sets the property DeviceSerialNumber.
/// <para>
/// The key generated by the OEM that uniquely identifies a specified instance of your
/// AVS device.
/// </para>
/// </summary>
public string DeviceSerialNumber
{
get { return this._deviceSerialNumber; }
set { this._deviceSerialNumber = value; }
}
// Check to see if DeviceSerialNumber property is set
internal bool IsSetDeviceSerialNumber()
{
return this._deviceSerialNumber != null;
}
/// <summary>
/// Gets and sets the property ProductId.
/// <para>
/// The product ID used to identify your AVS device during authorization.
/// </para>
/// </summary>
[AWSProperty(Required=true)]
public string ProductId
{
get { return this._productId; }
set { this._productId = value; }
}
// Check to see if ProductId property is set
internal bool IsSetProductId()
{
return this._productId != null;
}
/// <summary>
/// Gets and sets the property RoomArn.
/// <para>
/// The Amazon Resource Name (ARN) of the room with which to associate your AVS device.
/// </para>
/// </summary>
public string RoomArn
{
get { return this._roomArn; }
set { this._roomArn = value; }
}
// Check to see if RoomArn property is set
internal bool IsSetRoomArn()
{
return this._roomArn != null;
}
/// <summary>
/// Gets and sets the property Tags.
/// <para>
/// The tags to be added to the specified resource. Do not provide system tags.
/// </para>
/// </summary>
public List<Tag> Tags
{
get { return this._tags; }
set { this._tags = value; }
}
// Check to see if Tags property is set
internal bool IsSetTags()
{
return this._tags != null && this._tags.Count > 0;
}
/// <summary>
/// Gets and sets the property UserCode.
/// <para>
/// The code that is obtained after your AVS device has made a POST request to LWA as
/// a part of the Device Authorization Request component of the OAuth code-based linking
/// specification.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=1, Max=128)]
public string UserCode
{
get { return this._userCode; }
set { this._userCode = value; }
}
// Check to see if UserCode property is set
internal bool IsSetUserCode()
{
return this._userCode != null;
}
}
} | 181 |
aws-sdk-net | aws | C# | /*
* 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 alexaforbusiness-2017-11-09.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.AlexaForBusiness.Model
{
/// <summary>
/// This is the response object from the RegisterAVSDevice operation.
/// </summary>
public partial class RegisterAVSDeviceResponse : AmazonWebServiceResponse
{
private string _deviceArn;
/// <summary>
/// Gets and sets the property DeviceArn.
/// <para>
/// The ARN of the device.
/// </para>
/// </summary>
public string DeviceArn
{
get { return this._deviceArn; }
set { this._deviceArn = value; }
}
// Check to see if DeviceArn property is set
internal bool IsSetDeviceArn()
{
return this._deviceArn != null;
}
}
} | 57 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.