/*
* 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 budgets-2016-10-20.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.Budgets.Model
{
///
/// Specifies all of the type-specific parameters.
///
public partial class Definition
{
private IamActionDefinition _iamActionDefinition;
private ScpActionDefinition _scpActionDefinition;
private SsmActionDefinition _ssmActionDefinition;
///
/// Gets and sets the property IamActionDefinition.
///
/// The Identity and Access Management (IAM) action definition details.
///
///
public IamActionDefinition IamActionDefinition
{
get { return this._iamActionDefinition; }
set { this._iamActionDefinition = value; }
}
// Check to see if IamActionDefinition property is set
internal bool IsSetIamActionDefinition()
{
return this._iamActionDefinition != null;
}
///
/// Gets and sets the property ScpActionDefinition.
///
/// The service control policies (SCPs) action definition details.
///
///
public ScpActionDefinition ScpActionDefinition
{
get { return this._scpActionDefinition; }
set { this._scpActionDefinition = value; }
}
// Check to see if ScpActionDefinition property is set
internal bool IsSetScpActionDefinition()
{
return this._scpActionDefinition != null;
}
///
/// Gets and sets the property SsmActionDefinition.
///
/// The Amazon Web Services Systems Manager (SSM) action definition details.
///
///
public SsmActionDefinition SsmActionDefinition
{
get { return this._ssmActionDefinition; }
set { this._ssmActionDefinition = value; }
}
// Check to see if SsmActionDefinition property is set
internal bool IsSetSsmActionDefinition()
{
return this._ssmActionDefinition != null;
}
}
}