/*
* 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 signer-2017-08-25.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.Signer.Model
{
///
/// Container for the parameters to the ListSigningPlatforms operation.
/// Lists all signing platforms available in code signing that match the request parameters.
/// If additional jobs remain to be listed, code signing returns a nextToken
/// value. Use this value in subsequent calls to ListSigningJobs to fetch
/// the remaining values. You can continue calling ListSigningJobs with your
/// maxResults parameter and with new values that code signing returns in
/// the nextToken parameter until all of your signing jobs have been returned.
///
public partial class ListSigningPlatformsRequest : AmazonSignerRequest
{
private string _category;
private int? _maxResults;
private string _nextToken;
private string _partner;
private string _target;
///
/// Gets and sets the property Category.
///
/// The category type of a signing platform.
///
///
public string Category
{
get { return this._category; }
set { this._category = value; }
}
// Check to see if Category property is set
internal bool IsSetCategory()
{
return this._category != null;
}
///
/// Gets and sets the property MaxResults.
///
/// The maximum number of results to be returned by this operation.
///
///
[AWSProperty(Min=1, Max=25)]
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;
}
///
/// Gets and sets the property NextToken.
///
/// Value for specifying the next set of paginated results to return. After you receive
/// a response with truncated results, use this parameter in a subsequent request. Set
/// it to the value of nextToken from the response that you just received.
///
///
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;
}
///
/// Gets and sets the property Partner.
///
/// Any partner entities connected to a signing platform.
///
///
public string Partner
{
get { return this._partner; }
set { this._partner = value; }
}
// Check to see if Partner property is set
internal bool IsSetPartner()
{
return this._partner != null;
}
///
/// Gets and sets the property Target.
///
/// The validation template that is used by the target signing platform.
///
///
public string Target
{
get { return this._target; }
set { this._target = value; }
}
// Check to see if Target property is set
internal bool IsSetTarget()
{
return this._target != null;
}
}
}