/*
* 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 GetDeployablePatchSnapshotForInstance operation.
/// Retrieves the current snapshot for the patch baseline the managed node uses. This
/// API is primarily used by the AWS-RunPatchBaseline
Systems Manager document
/// (SSM document).
///
///
///
/// If you run the command locally, such as with the Command Line Interface (CLI), the
/// system attempts to use your local Amazon Web Services credentials and the operation
/// fails. To avoid this, you can run the command in the Amazon Web Services Systems Manager
/// console. Use Run Command, a capability of Amazon Web Services Systems Manager, with
/// an SSM document that enables you to target a managed node with a script or command.
/// For example, run the command using the AWS-RunShellScript
document or
/// the AWS-RunPowerShellScript
document.
///
///
///
public partial class GetDeployablePatchSnapshotForInstanceRequest : AmazonSimpleSystemsManagementRequest
{
private BaselineOverride _baselineOverride;
private string _instanceId;
private string _snapshotId;
///
/// Gets and sets the property BaselineOverride.
///
/// Defines the basic information about a patch baseline override.
///
///
public BaselineOverride BaselineOverride
{
get { return this._baselineOverride; }
set { this._baselineOverride = value; }
}
// Check to see if BaselineOverride property is set
internal bool IsSetBaselineOverride()
{
return this._baselineOverride != null;
}
///
/// Gets and sets the property InstanceId.
///
/// The ID of the managed node for which the appropriate patch snapshot should be retrieved.
///
///
[AWSProperty(Required=true)]
public string InstanceId
{
get { return this._instanceId; }
set { this._instanceId = value; }
}
// Check to see if InstanceId property is set
internal bool IsSetInstanceId()
{
return this._instanceId != null;
}
///
/// Gets and sets the property SnapshotId.
///
/// The snapshot ID provided by the user when running AWS-RunPatchBaseline
.
///
///
[AWSProperty(Required=true, Min=36, Max=36)]
public string SnapshotId
{
get { return this._snapshotId; }
set { this._snapshotId = value; }
}
// Check to see if SnapshotId property is set
internal bool IsSetSnapshotId()
{
return this._snapshotId != null;
}
}
}