amazonka-rolesanywhere-2.0: Amazon IAM Roles Anywhere SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.RolesAnywhere.Types.ProfileDetail

Description

 
Synopsis

Documentation

data ProfileDetail Source #

The state of the profile after a read or write operation.

See: newProfileDetail smart constructor.

Constructors

ProfileDetail' 

Fields

Instances

Instances details
FromJSON ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

Generic ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

Associated Types

type Rep ProfileDetail :: Type -> Type #

Read ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

Show ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

NFData ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

Methods

rnf :: ProfileDetail -> () #

Eq ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

Hashable ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

type Rep ProfileDetail Source # 
Instance details

Defined in Amazonka.RolesAnywhere.Types.ProfileDetail

type Rep ProfileDetail = D1 ('MetaData "ProfileDetail" "Amazonka.RolesAnywhere.Types.ProfileDetail" "amazonka-rolesanywhere-2.0-7BPe9kXny717lI0izhhqXT" 'False) (C1 ('MetaCons "ProfileDetail'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "createdAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 ('MetaSel ('Just "createdBy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "durationSeconds") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: (S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "managedPolicyArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 ('MetaSel ('Just "profileArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "profileId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "requireInstanceProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))) :*: (S1 ('MetaSel ('Just "roleArns") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "sessionPolicy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "updatedAt") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)))))))

newProfileDetail :: ProfileDetail Source #

Create a value of ProfileDetail with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:createdAt:ProfileDetail', profileDetail_createdAt - The ISO-8601 timestamp when the profile was created.

$sel:createdBy:ProfileDetail', profileDetail_createdBy - The Amazon Web Services account that created the profile.

$sel:durationSeconds:ProfileDetail', profileDetail_durationSeconds - The number of seconds the vended session credentials are valid for.

$sel:enabled:ProfileDetail', profileDetail_enabled - Indicates whether the profile is enabled.

$sel:managedPolicyArns:ProfileDetail', profileDetail_managedPolicyArns - A list of managed policy ARNs that apply to the vended session credentials.

$sel:name:ProfileDetail', profileDetail_name - The name of the profile.

$sel:profileArn:ProfileDetail', profileDetail_profileArn - The ARN of the profile.

$sel:profileId:ProfileDetail', profileDetail_profileId - The unique identifier of the profile.

$sel:requireInstanceProperties:ProfileDetail', profileDetail_requireInstanceProperties - Specifies whether instance properties are required in CreateSession requests with this profile.

$sel:roleArns:ProfileDetail', profileDetail_roleArns - A list of IAM roles that this profile can assume in a CreateSession operation.

$sel:sessionPolicy:ProfileDetail', profileDetail_sessionPolicy - A session policy that applies to the trust boundary of the vended session credentials.

$sel:updatedAt:ProfileDetail', profileDetail_updatedAt - The ISO-8601 timestamp when the profile was last updated.

profileDetail_createdAt :: Lens' ProfileDetail (Maybe UTCTime) Source #

The ISO-8601 timestamp when the profile was created.

profileDetail_createdBy :: Lens' ProfileDetail (Maybe Text) Source #

The Amazon Web Services account that created the profile.

profileDetail_durationSeconds :: Lens' ProfileDetail (Maybe Int) Source #

The number of seconds the vended session credentials are valid for.

profileDetail_enabled :: Lens' ProfileDetail (Maybe Bool) Source #

Indicates whether the profile is enabled.

profileDetail_managedPolicyArns :: Lens' ProfileDetail (Maybe [Text]) Source #

A list of managed policy ARNs that apply to the vended session credentials.

profileDetail_name :: Lens' ProfileDetail (Maybe Text) Source #

The name of the profile.

profileDetail_profileId :: Lens' ProfileDetail (Maybe Text) Source #

The unique identifier of the profile.

profileDetail_requireInstanceProperties :: Lens' ProfileDetail (Maybe Bool) Source #

Specifies whether instance properties are required in CreateSession requests with this profile.

profileDetail_roleArns :: Lens' ProfileDetail (Maybe [Text]) Source #

A list of IAM roles that this profile can assume in a CreateSession operation.

profileDetail_sessionPolicy :: Lens' ProfileDetail (Maybe Text) Source #

A session policy that applies to the trust boundary of the vended session credentials.

profileDetail_updatedAt :: Lens' ProfileDetail (Maybe UTCTime) Source #

The ISO-8601 timestamp when the profile was last updated.