amazonka-iam-1.4.5: Amazon Identity and Access Management SDK.

Copyright(c) 2013-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.IAM.PutRolePolicy

Contents

Description

Adds or updates an inline policy document that is embedded in the specified IAM role.

When you embed an inline policy in a role, the inline policy is used as part of the role's access (permissions) policy. The role's trust policy is created at the same time as the role, using CreateRole . You can update a role's trust policy using UpdateAssumeRolePolicy . For more information about IAM roles, go to Using Roles to Delegate Permissions and Federate Identities .

A role can also have a managed policy attached to it. To attach a managed policy to a role, use AttachRolePolicy . To create a new managed policy, use CreatePolicy . For information about policies, see Managed Policies and Inline Policies in the IAM User Guide .

For information about limits on the number of inline policies that you can embed with a role, see Limitations on IAM Entities in the IAM User Guide .

Synopsis

Creating a Request

putRolePolicy #

Creates a value of PutRolePolicy with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • prpRoleName - The name of the role to associate the policy with. The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
  • prpPolicyName - The name of the policy document. The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
  • prpPolicyDocument - The policy document. The regex pattern for this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range (u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D).

data PutRolePolicy #

See: putRolePolicy smart constructor.

Instances

Eq PutRolePolicy # 
Data PutRolePolicy # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PutRolePolicy -> c PutRolePolicy #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PutRolePolicy #

toConstr :: PutRolePolicy -> Constr #

dataTypeOf :: PutRolePolicy -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PutRolePolicy) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PutRolePolicy) #

gmapT :: (forall b. Data b => b -> b) -> PutRolePolicy -> PutRolePolicy #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PutRolePolicy -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PutRolePolicy -> r #

gmapQ :: (forall d. Data d => d -> u) -> PutRolePolicy -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PutRolePolicy -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PutRolePolicy -> m PutRolePolicy #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRolePolicy -> m PutRolePolicy #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRolePolicy -> m PutRolePolicy #

Read PutRolePolicy # 
Show PutRolePolicy # 
Generic PutRolePolicy # 

Associated Types

type Rep PutRolePolicy :: * -> * #

Hashable PutRolePolicy # 
NFData PutRolePolicy # 

Methods

rnf :: PutRolePolicy -> () #

AWSRequest PutRolePolicy # 
ToQuery PutRolePolicy # 
ToPath PutRolePolicy # 
ToHeaders PutRolePolicy # 
type Rep PutRolePolicy # 
type Rep PutRolePolicy = D1 (MetaData "PutRolePolicy" "Network.AWS.IAM.PutRolePolicy" "amazonka-iam-1.4.5-1ijrgQyRuWgA7Tx0390Dx2" False) (C1 (MetaCons "PutRolePolicy'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_prpRoleName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) ((:*:) (S1 (MetaSel (Just Symbol "_prpPolicyName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_prpPolicyDocument") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs PutRolePolicy # 

Request Lenses

prpRoleName :: Lens' PutRolePolicy Text #

The name of the role to associate the policy with. The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-

prpPolicyName :: Lens' PutRolePolicy Text #

The name of the policy document. The regex pattern for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-

prpPolicyDocument :: Lens' PutRolePolicy Text #

The policy document. The regex pattern for this parameter is a string of characters consisting of any printable ASCII character ranging from the space character (u0020) through end of the ASCII character range (u00FF). It also includes the special characters tab (u0009), line feed (u000A), and carriage return (u000D).

Destructuring the Response

putRolePolicyResponse :: PutRolePolicyResponse #

Creates a value of PutRolePolicyResponse with the minimum fields required to make a request.

data PutRolePolicyResponse #

See: putRolePolicyResponse smart constructor.

Instances

Eq PutRolePolicyResponse # 
Data PutRolePolicyResponse # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PutRolePolicyResponse -> c PutRolePolicyResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PutRolePolicyResponse #

toConstr :: PutRolePolicyResponse -> Constr #

dataTypeOf :: PutRolePolicyResponse -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PutRolePolicyResponse) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PutRolePolicyResponse) #

gmapT :: (forall b. Data b => b -> b) -> PutRolePolicyResponse -> PutRolePolicyResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PutRolePolicyResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PutRolePolicyResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> PutRolePolicyResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PutRolePolicyResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PutRolePolicyResponse -> m PutRolePolicyResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRolePolicyResponse -> m PutRolePolicyResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PutRolePolicyResponse -> m PutRolePolicyResponse #

Read PutRolePolicyResponse # 
Show PutRolePolicyResponse # 
Generic PutRolePolicyResponse # 
NFData PutRolePolicyResponse # 

Methods

rnf :: PutRolePolicyResponse -> () #

type Rep PutRolePolicyResponse # 
type Rep PutRolePolicyResponse = D1 (MetaData "PutRolePolicyResponse" "Network.AWS.IAM.PutRolePolicy" "amazonka-iam-1.4.5-1ijrgQyRuWgA7Tx0390Dx2" False) (C1 (MetaCons "PutRolePolicyResponse'" PrefixI False) U1)