/* * 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 ssm-2014-11-06.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.SimpleSystemsManagement.Model { /// /// Container for the parameters to the DescribeOpsItems operation. /// Query a set of OpsItems. You must have permission in Identity and Access Management /// (IAM) to query a list of OpsItems. For more information, see Set /// up OpsCenter in the Amazon Web Services Systems Manager User Guide. /// /// /// /// Operations engineers and IT professionals use Amazon Web Services Systems Manager /// OpsCenter to view, investigate, and remediate operational issues impacting the performance /// and health of their Amazon Web Services resources. For more information, see OpsCenter /// in the Amazon Web Services Systems Manager User Guide. /// /// public partial class DescribeOpsItemsRequest : AmazonSimpleSystemsManagementRequest { private int? _maxResults; private string _nextToken; private List _opsItemFilters = new List(); /// /// Gets and sets the property MaxResults. /// /// The maximum number of items to return for this call. The call also returns a token /// that you can specify in a subsequent call to get the next set of results. /// /// [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; } /// /// Gets and sets the property NextToken. /// /// A token to start the list. Use this token to get the next set of results. /// /// 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 OpsItemFilters. /// /// One or more filters to limit the response. /// ///
  • /// /// Key: CreatedTime /// /// /// /// Operations: GreaterThan, LessThan /// ///
  • /// /// Key: LastModifiedBy /// /// /// /// Operations: Contains, Equals /// ///
  • /// /// Key: LastModifiedTime /// /// /// /// Operations: GreaterThan, LessThan /// ///
  • /// /// Key: Priority /// /// /// /// Operations: Equals /// ///
  • /// /// Key: Source /// /// /// /// Operations: Contains, Equals /// ///
  • /// /// Key: Status /// /// /// /// Operations: Equals /// ///
  • /// /// Key: Title* /// /// /// /// Operations: Equals,Contains /// ///
  • /// /// Key: OperationalData** /// /// /// /// Operations: Equals /// ///
  • /// /// Key: OperationalDataKey /// /// /// /// Operations: Equals /// ///
  • /// /// Key: OperationalDataValue /// /// /// /// Operations: Equals, Contains /// ///
  • /// /// Key: OpsItemId /// /// /// /// Operations: Equals /// ///
  • /// /// Key: ResourceId /// /// /// /// Operations: Contains /// ///
  • /// /// Key: AutomationId /// /// /// /// Operations: Equals /// ///
  • /// /// Key: AccountId /// /// /// /// Operations: Equals /// ///
/// /// *The Equals operator for Title matches the first 100 characters. If you specify more /// than 100 characters, they system returns an error that the filter value exceeds the /// length limit. /// /// /// /// **If you filter the response by using the OperationalData operator, specify a key-value /// pair by using the following JSON format: {"key":"key_name","value":"a_value"} /// ///
public List OpsItemFilters { get { return this._opsItemFilters; } set { this._opsItemFilters = value; } } // Check to see if OpsItemFilters property is set internal bool IsSetOpsItemFilters() { return this._opsItemFilters != null && this._opsItemFilters.Count > 0; } } }