/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about an IAM role, including all of the role's
* policies. This data type is used as a response element in the
* GetAccountAuthorizationDetails operation.See Also:
AWS API
* Reference
The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline const Aws::String& GetPath() const{ return m_path; } /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline bool PathHasBeenSet() const { return m_pathHasBeenSet; } /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline void SetPath(const Aws::String& value) { m_pathHasBeenSet = true; m_path = value; } /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline void SetPath(Aws::String&& value) { m_pathHasBeenSet = true; m_path = std::move(value); } /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline void SetPath(const char* value) { m_pathHasBeenSet = true; m_path.assign(value); } /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithPath(const Aws::String& value) { SetPath(value); return *this;} /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithPath(Aws::String&& value) { SetPath(std::move(value)); return *this;} /** *The path to the role. For more information about paths, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithPath(const char* value) { SetPath(value); return *this;} /** *The friendly name that identifies the role.
*/ inline const Aws::String& GetRoleName() const{ return m_roleName; } /** *The friendly name that identifies the role.
*/ inline bool RoleNameHasBeenSet() const { return m_roleNameHasBeenSet; } /** *The friendly name that identifies the role.
*/ inline void SetRoleName(const Aws::String& value) { m_roleNameHasBeenSet = true; m_roleName = value; } /** *The friendly name that identifies the role.
*/ inline void SetRoleName(Aws::String&& value) { m_roleNameHasBeenSet = true; m_roleName = std::move(value); } /** *The friendly name that identifies the role.
*/ inline void SetRoleName(const char* value) { m_roleNameHasBeenSet = true; m_roleName.assign(value); } /** *The friendly name that identifies the role.
*/ inline RoleDetail& WithRoleName(const Aws::String& value) { SetRoleName(value); return *this;} /** *The friendly name that identifies the role.
*/ inline RoleDetail& WithRoleName(Aws::String&& value) { SetRoleName(std::move(value)); return *this;} /** *The friendly name that identifies the role.
*/ inline RoleDetail& WithRoleName(const char* value) { SetRoleName(value); return *this;} /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline const Aws::String& GetRoleId() const{ return m_roleId; } /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline bool RoleIdHasBeenSet() const { return m_roleIdHasBeenSet; } /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline void SetRoleId(const Aws::String& value) { m_roleIdHasBeenSet = true; m_roleId = value; } /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline void SetRoleId(Aws::String&& value) { m_roleIdHasBeenSet = true; m_roleId = std::move(value); } /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline void SetRoleId(const char* value) { m_roleIdHasBeenSet = true; m_roleId.assign(value); } /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithRoleId(const Aws::String& value) { SetRoleId(value); return *this;} /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithRoleId(Aws::String&& value) { SetRoleId(std::move(value)); return *this;} /** *The stable and unique string identifying the role. For more information about * IDs, see IAM * identifiers in the IAM User Guide.
*/ inline RoleDetail& WithRoleId(const char* value) { SetRoleId(value); return *this;} inline const Aws::String& GetArn() const{ return m_arn; } inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } inline RoleDetail& WithArn(const Aws::String& value) { SetArn(value); return *this;} inline RoleDetail& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} inline RoleDetail& WithArn(const char* value) { SetArn(value); return *this;} /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline const Aws::Utils::DateTime& GetCreateDate() const{ return m_createDate; } /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline bool CreateDateHasBeenSet() const { return m_createDateHasBeenSet; } /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline void SetCreateDate(const Aws::Utils::DateTime& value) { m_createDateHasBeenSet = true; m_createDate = value; } /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline void SetCreateDate(Aws::Utils::DateTime&& value) { m_createDateHasBeenSet = true; m_createDate = std::move(value); } /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline RoleDetail& WithCreateDate(const Aws::Utils::DateTime& value) { SetCreateDate(value); return *this;} /** *The date and time, in ISO 8601 * date-time format, when the role was created.
*/ inline RoleDetail& WithCreateDate(Aws::Utils::DateTime&& value) { SetCreateDate(std::move(value)); return *this;} /** *The trust policy that grants permission to assume the role.
*/ inline const Aws::String& GetAssumeRolePolicyDocument() const{ return m_assumeRolePolicyDocument; } /** *The trust policy that grants permission to assume the role.
*/ inline bool AssumeRolePolicyDocumentHasBeenSet() const { return m_assumeRolePolicyDocumentHasBeenSet; } /** *The trust policy that grants permission to assume the role.
*/ inline void SetAssumeRolePolicyDocument(const Aws::String& value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument = value; } /** *The trust policy that grants permission to assume the role.
*/ inline void SetAssumeRolePolicyDocument(Aws::String&& value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument = std::move(value); } /** *The trust policy that grants permission to assume the role.
*/ inline void SetAssumeRolePolicyDocument(const char* value) { m_assumeRolePolicyDocumentHasBeenSet = true; m_assumeRolePolicyDocument.assign(value); } /** *The trust policy that grants permission to assume the role.
*/ inline RoleDetail& WithAssumeRolePolicyDocument(const Aws::String& value) { SetAssumeRolePolicyDocument(value); return *this;} /** *The trust policy that grants permission to assume the role.
*/ inline RoleDetail& WithAssumeRolePolicyDocument(Aws::String&& value) { SetAssumeRolePolicyDocument(std::move(value)); return *this;} /** *The trust policy that grants permission to assume the role.
*/ inline RoleDetail& WithAssumeRolePolicyDocument(const char* value) { SetAssumeRolePolicyDocument(value); return *this;} /** *A list of instance profiles that contain this role.
*/ inline const Aws::VectorA list of instance profiles that contain this role.
*/ inline bool InstanceProfileListHasBeenSet() const { return m_instanceProfileListHasBeenSet; } /** *A list of instance profiles that contain this role.
*/ inline void SetInstanceProfileList(const Aws::VectorA list of instance profiles that contain this role.
*/ inline void SetInstanceProfileList(Aws::VectorA list of instance profiles that contain this role.
*/ inline RoleDetail& WithInstanceProfileList(const Aws::VectorA list of instance profiles that contain this role.
*/ inline RoleDetail& WithInstanceProfileList(Aws::VectorA list of instance profiles that contain this role.
*/ inline RoleDetail& AddInstanceProfileList(const InstanceProfile& value) { m_instanceProfileListHasBeenSet = true; m_instanceProfileList.push_back(value); return *this; } /** *A list of instance profiles that contain this role.
*/ inline RoleDetail& AddInstanceProfileList(InstanceProfile&& value) { m_instanceProfileListHasBeenSet = true; m_instanceProfileList.push_back(std::move(value)); return *this; } /** *A list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline const Aws::VectorA list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline bool RolePolicyListHasBeenSet() const { return m_rolePolicyListHasBeenSet; } /** *A list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline void SetRolePolicyList(const Aws::VectorA list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline void SetRolePolicyList(Aws::VectorA list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline RoleDetail& WithRolePolicyList(const Aws::VectorA list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline RoleDetail& WithRolePolicyList(Aws::VectorA list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline RoleDetail& AddRolePolicyList(const PolicyDetail& value) { m_rolePolicyListHasBeenSet = true; m_rolePolicyList.push_back(value); return *this; } /** *A list of inline policies embedded in the role. These policies are the role's * access (permissions) policies.
*/ inline RoleDetail& AddRolePolicyList(PolicyDetail&& value) { m_rolePolicyListHasBeenSet = true; m_rolePolicyList.push_back(std::move(value)); return *this; } /** *A list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline const Aws::VectorA list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline bool AttachedManagedPoliciesHasBeenSet() const { return m_attachedManagedPoliciesHasBeenSet; } /** *A list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline void SetAttachedManagedPolicies(const Aws::VectorA list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline void SetAttachedManagedPolicies(Aws::VectorA list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline RoleDetail& WithAttachedManagedPolicies(const Aws::VectorA list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline RoleDetail& WithAttachedManagedPolicies(Aws::VectorA list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline RoleDetail& AddAttachedManagedPolicies(const AttachedPolicy& value) { m_attachedManagedPoliciesHasBeenSet = true; m_attachedManagedPolicies.push_back(value); return *this; } /** *A list of managed policies attached to the role. These policies are the * role's access (permissions) policies.
*/ inline RoleDetail& AddAttachedManagedPolicies(AttachedPolicy&& value) { m_attachedManagedPoliciesHasBeenSet = true; m_attachedManagedPolicies.push_back(std::move(value)); return *this; } /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline const AttachedPermissionsBoundary& GetPermissionsBoundary() const{ return m_permissionsBoundary; } /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline bool PermissionsBoundaryHasBeenSet() const { return m_permissionsBoundaryHasBeenSet; } /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline void SetPermissionsBoundary(const AttachedPermissionsBoundary& value) { m_permissionsBoundaryHasBeenSet = true; m_permissionsBoundary = value; } /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline void SetPermissionsBoundary(AttachedPermissionsBoundary&& value) { m_permissionsBoundaryHasBeenSet = true; m_permissionsBoundary = std::move(value); } /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline RoleDetail& WithPermissionsBoundary(const AttachedPermissionsBoundary& value) { SetPermissionsBoundary(value); return *this;} /** *The ARN of the policy used to set the permissions boundary for the role.
*For more information about permissions boundaries, see Permissions * boundaries for IAM identities in the IAM User Guide.
*/ inline RoleDetail& WithPermissionsBoundary(AttachedPermissionsBoundary&& value) { SetPermissionsBoundary(std::move(value)); return *this;} /** *A list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline const Aws::VectorA list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *A list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline void SetTags(const Aws::VectorA list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline void SetTags(Aws::VectorA list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline RoleDetail& WithTags(const Aws::VectorA list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline RoleDetail& WithTags(Aws::VectorA list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline RoleDetail& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *A list of tags that are attached to the role. For more information about * tagging, see Tagging IAM * resources in the IAM User Guide.
*/ inline RoleDetail& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline const RoleLastUsed& GetRoleLastUsed() const{ return m_roleLastUsed; } /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline bool RoleLastUsedHasBeenSet() const { return m_roleLastUsedHasBeenSet; } /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline void SetRoleLastUsed(const RoleLastUsed& value) { m_roleLastUsedHasBeenSet = true; m_roleLastUsed = value; } /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline void SetRoleLastUsed(RoleLastUsed&& value) { m_roleLastUsedHasBeenSet = true; m_roleLastUsed = std::move(value); } /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline RoleDetail& WithRoleLastUsed(const RoleLastUsed& value) { SetRoleLastUsed(value); return *this;} /** *Contains information about the last time that an IAM role was used. This * includes the date and time and the Region in which the role was last used. * Activity is only reported for the trailing 400 days. This period can be shorter * if your Region began supporting these features within the last year. The role * might have been used more than 400 days ago. For more information, see Regions * where data is tracked in the IAM User Guide.
*/ inline RoleDetail& WithRoleLastUsed(RoleLastUsed&& value) { SetRoleLastUsed(std::move(value)); return *this;} private: Aws::String m_path; bool m_pathHasBeenSet = false; Aws::String m_roleName; bool m_roleNameHasBeenSet = false; Aws::String m_roleId; bool m_roleIdHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_createDate; bool m_createDateHasBeenSet = false; Aws::String m_assumeRolePolicyDocument; bool m_assumeRolePolicyDocumentHasBeenSet = false; Aws::Vector