/*
* 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 events-2015-10-07.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.CloudWatchEvents.Model
{
///
/// Contains additional parameters for the connection.
///
public partial class ConnectionHttpParameters
{
private List _bodyParameters = new List();
private List _headerParameters = new List();
private List _queryStringParameters = new List();
///
/// Gets and sets the property BodyParameters.
///
/// Contains additional body string parameters for the connection.
///
///
[AWSProperty(Min=0, Max=100)]
public List BodyParameters
{
get { return this._bodyParameters; }
set { this._bodyParameters = value; }
}
// Check to see if BodyParameters property is set
internal bool IsSetBodyParameters()
{
return this._bodyParameters != null && this._bodyParameters.Count > 0;
}
///
/// Gets and sets the property HeaderParameters.
///
/// Contains additional header parameters for the connection.
///
///
[AWSProperty(Min=0, Max=100)]
public List HeaderParameters
{
get { return this._headerParameters; }
set { this._headerParameters = value; }
}
// Check to see if HeaderParameters property is set
internal bool IsSetHeaderParameters()
{
return this._headerParameters != null && this._headerParameters.Count > 0;
}
///
/// Gets and sets the property QueryStringParameters.
///
/// Contains additional query string parameters for the connection.
///
///
[AWSProperty(Min=0, Max=100)]
public List QueryStringParameters
{
get { return this._queryStringParameters; }
set { this._queryStringParameters = value; }
}
// Check to see if QueryStringParameters property is set
internal bool IsSetQueryStringParameters()
{
return this._queryStringParameters != null && this._queryStringParameters.Count > 0;
}
}
}