/* * Copyright 2010-2014 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 iam-2010-05-08.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.IdentityManagement.Model { /// /// Container for the parameters to the PutUserPermissionsBoundary operation. /// Adds or updates the policy that is specified as the IAM user's permissions boundary. /// You can use an AWS managed policy or a customer managed policy to set the boundary /// for a user. Use the boundary to control the maximum permissions that the user can /// have. Setting a permissions boundary is an advanced feature that can affect the permissions /// for the user. /// /// /// /// Policies that are used as permissions boundaries do not provide permissions. You must /// also attach a permissions policy to the user. To learn how the effective permissions /// for a user are evaluated, see IAM /// JSON Policy Evaluation Logic in the IAM User Guide. /// /// /// public partial class PutUserPermissionsBoundaryRequest : AmazonIdentityManagementServiceRequest { private string _permissionsBoundary; private string _userName; /// /// Gets and sets the property PermissionsBoundary. /// /// The ARN of the policy that is used to set the permissions boundary for the user. /// /// [AWSProperty(Required=true, Min=20, Max=2048)] public string PermissionsBoundary { get { return this._permissionsBoundary; } set { this._permissionsBoundary = value; } } // Check to see if PermissionsBoundary property is set internal bool IsSetPermissionsBoundary() { return this._permissionsBoundary != null; } /// /// Gets and sets the property UserName. /// /// The name (friendly name, not ARN) of the IAM user for which you want to set the permissions /// boundary. /// /// [AWSProperty(Required=true, Min=1, Max=64)] public string UserName { get { return this._userName; } set { this._userName = value; } } // Check to see if UserName property is set internal bool IsSetUserName() { return this._userName != null; } } }