Rolesanywhere
This page documents function available when using the Rolesanywhere module, created with @service Rolesanywhere.
Index
Main.Rolesanywhere.create_profileMain.Rolesanywhere.create_trust_anchorMain.Rolesanywhere.delete_attribute_mappingMain.Rolesanywhere.delete_crlMain.Rolesanywhere.delete_profileMain.Rolesanywhere.delete_trust_anchorMain.Rolesanywhere.disable_crlMain.Rolesanywhere.disable_profileMain.Rolesanywhere.disable_trust_anchorMain.Rolesanywhere.enable_crlMain.Rolesanywhere.enable_profileMain.Rolesanywhere.enable_trust_anchorMain.Rolesanywhere.get_crlMain.Rolesanywhere.get_profileMain.Rolesanywhere.get_subjectMain.Rolesanywhere.get_trust_anchorMain.Rolesanywhere.import_crlMain.Rolesanywhere.list_crlsMain.Rolesanywhere.list_profilesMain.Rolesanywhere.list_subjectsMain.Rolesanywhere.list_tags_for_resourceMain.Rolesanywhere.list_trust_anchorsMain.Rolesanywhere.put_attribute_mappingMain.Rolesanywhere.put_notification_settingsMain.Rolesanywhere.reset_notification_settingsMain.Rolesanywhere.tag_resourceMain.Rolesanywhere.untag_resourceMain.Rolesanywhere.update_crlMain.Rolesanywhere.update_profileMain.Rolesanywhere.update_trust_anchor
Documentation
Main.Rolesanywhere.create_profile — Method
create_profile(name, role_arns)
create_profile(name, role_arns, params::Dict{String,<:Any})Creates a profile, a list of the roles that Roles Anywhere service is trusted to assume. You use profiles to intersect permissions with IAM managed policies. Required permissions: rolesanywhere:CreateProfile.
Arguments
name: The name of the profile.role_arns: A list of IAM roles that this profile can assume in a temporary credential request.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"durationSeconds": Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600."enabled": Specifies whether the profile is enabled."managedPolicyArns": A list of managed policy ARNs that apply to the vended session credentials."requireInstanceProperties": Specifies whether instance properties are required in temporary credential requests with this profile."sessionPolicy": A session policy that applies to the trust boundary of the vended session credentials."tags": The tags to attach to the profile.
Main.Rolesanywhere.create_trust_anchor — Method
create_trust_anchor(name, source)
create_trust_anchor(name, source, params::Dict{String,<:Any})Creates a trust anchor to establish trust between IAM Roles Anywhere and your certificate authority (CA). You can define a trust anchor as a reference to an Private Certificate Authority (Private CA) or by uploading a CA certificate. Your Amazon Web Services workloads can authenticate with the trust anchor using certificates issued by the CA in exchange for temporary Amazon Web Services credentials. Required permissions: rolesanywhere:CreateTrustAnchor.
Arguments
name: The name of the trust anchor.source: The trust anchor type and its related certificate data.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"enabled": Specifies whether the trust anchor is enabled."notificationSettings": A list of notification settings to be associated to the trust anchor."tags": The tags to attach to the trust anchor.
Main.Rolesanywhere.delete_attribute_mapping — Method
delete_attribute_mapping(certificate_field, profile_id)
delete_attribute_mapping(certificate_field, profile_id, params::Dict{String,<:Any})Delete an entry from the attribute mapping rules enforced by a given profile.
Arguments
certificate_field: Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.profile_id: The unique identifier of the profile.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"specifiers": A list of specifiers of a certificate field; for example, CN, OU, UID from a Subject.
Main.Rolesanywhere.delete_crl — Method
delete_crl(crl_id)
delete_crl(crl_id, params::Dict{String,<:Any})Deletes a certificate revocation list (CRL). Required permissions: rolesanywhere:DeleteCrl.
Arguments
crl_id: The unique identifier of the certificate revocation list (CRL).
Main.Rolesanywhere.delete_profile — Method
delete_profile(profile_id)
delete_profile(profile_id, params::Dict{String,<:Any})Deletes a profile. Required permissions: rolesanywhere:DeleteProfile.
Arguments
profile_id: The unique identifier of the profile.
Main.Rolesanywhere.delete_trust_anchor — Method
delete_trust_anchor(trust_anchor_id)
delete_trust_anchor(trust_anchor_id, params::Dict{String,<:Any})Deletes a trust anchor. Required permissions: rolesanywhere:DeleteTrustAnchor.
Arguments
trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.disable_crl — Method
disable_crl(crl_id)
disable_crl(crl_id, params::Dict{String,<:Any})Disables a certificate revocation list (CRL). Required permissions: rolesanywhere:DisableCrl.
Arguments
crl_id: The unique identifier of the certificate revocation list (CRL).
Main.Rolesanywhere.disable_profile — Method
disable_profile(profile_id)
disable_profile(profile_id, params::Dict{String,<:Any})Disables a profile. When disabled, temporary credential requests with this profile fail. Required permissions: rolesanywhere:DisableProfile.
Arguments
profile_id: The unique identifier of the profile.
Main.Rolesanywhere.disable_trust_anchor — Method
disable_trust_anchor(trust_anchor_id)
disable_trust_anchor(trust_anchor_id, params::Dict{String,<:Any})Disables a trust anchor. When disabled, temporary credential requests specifying this trust anchor are unauthorized. Required permissions: rolesanywhere:DisableTrustAnchor.
Arguments
trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.enable_crl — Method
enable_crl(crl_id)
enable_crl(crl_id, params::Dict{String,<:Any})Enables a certificate revocation list (CRL). When enabled, certificates stored in the CRL are unauthorized to receive session credentials. Required permissions: rolesanywhere:EnableCrl.
Arguments
crl_id: The unique identifier of the certificate revocation list (CRL).
Main.Rolesanywhere.enable_profile — Method
enable_profile(profile_id)
enable_profile(profile_id, params::Dict{String,<:Any})Enables temporary credential requests for a profile. Required permissions: rolesanywhere:EnableProfile.
Arguments
profile_id: The unique identifier of the profile.
Main.Rolesanywhere.enable_trust_anchor — Method
enable_trust_anchor(trust_anchor_id)
enable_trust_anchor(trust_anchor_id, params::Dict{String,<:Any})Enables a trust anchor. When enabled, certificates in the trust anchor chain are authorized for trust validation. Required permissions: rolesanywhere:EnableTrustAnchor.
Arguments
trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.get_crl — Method
get_crl(crl_id)
get_crl(crl_id, params::Dict{String,<:Any})Gets a certificate revocation list (CRL). Required permissions: rolesanywhere:GetCrl.
Arguments
crl_id: The unique identifier of the certificate revocation list (CRL).
Main.Rolesanywhere.get_profile — Method
get_profile(profile_id)
get_profile(profile_id, params::Dict{String,<:Any})Gets a profile. Required permissions: rolesanywhere:GetProfile.
Arguments
profile_id: The unique identifier of the profile.
Main.Rolesanywhere.get_subject — Method
get_subject(subject_id)
get_subject(subject_id, params::Dict{String,<:Any})Gets a subject, which associates a certificate identity with authentication attempts. The subject stores auditing information such as the status of the last authentication attempt, the certificate data used in the attempt, and the last time the associated identity attempted authentication. Required permissions: rolesanywhere:GetSubject.
Arguments
subject_id: The unique identifier of the subject.
Main.Rolesanywhere.get_trust_anchor — Method
get_trust_anchor(trust_anchor_id)
get_trust_anchor(trust_anchor_id, params::Dict{String,<:Any})Gets a trust anchor. Required permissions: rolesanywhere:GetTrustAnchor.
Arguments
trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.import_crl — Method
import_crl(crl_data, name, trust_anchor_arn)
import_crl(crl_data, name, trust_anchor_arn, params::Dict{String,<:Any})Imports the certificate revocation list (CRL). A CRL is a list of certificates that have been revoked by the issuing certificate Authority (CA).In order to be properly imported, a CRL must be in PEM format. IAM Roles Anywhere validates against the CRL before issuing credentials. Required permissions: rolesanywhere:ImportCrl.
Arguments
crl_data: The x509 v3 specified certificate revocation list (CRL).name: The name of the certificate revocation list (CRL).trust_anchor_arn: The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"enabled": Specifies whether the certificate revocation list (CRL) is enabled."tags": A list of tags to attach to the certificate revocation list (CRL).
Main.Rolesanywhere.list_crls — Method
list_crls()
list_crls(params::Dict{String,<:Any})Lists all certificate revocation lists (CRL) in the authenticated account and Amazon Web Services Region. Required permissions: rolesanywhere:ListCrls.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"nextToken": A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value."pageSize": The number of resources in the paginated list.
Main.Rolesanywhere.list_profiles — Method
list_profiles()
list_profiles(params::Dict{String,<:Any})Lists all profiles in the authenticated account and Amazon Web Services Region. Required permissions: rolesanywhere:ListProfiles.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"nextToken": A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value."pageSize": The number of resources in the paginated list.
Main.Rolesanywhere.list_subjects — Method
list_subjects()
list_subjects(params::Dict{String,<:Any})Lists the subjects in the authenticated account and Amazon Web Services Region. Required permissions: rolesanywhere:ListSubjects.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"nextToken": A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value."pageSize": The number of resources in the paginated list.
Main.Rolesanywhere.list_tags_for_resource — Method
list_tags_for_resource(resource_arn)
list_tags_for_resource(resource_arn, params::Dict{String,<:Any})Lists the tags attached to the resource. Required permissions: rolesanywhere:ListTagsForResource.
Arguments
resource_arn: The ARN of the resource.
Main.Rolesanywhere.list_trust_anchors — Method
list_trust_anchors()
list_trust_anchors(params::Dict{String,<:Any})Lists the trust anchors in the authenticated account and Amazon Web Services Region. Required permissions: rolesanywhere:ListTrustAnchors.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"nextToken": A token that indicates where the output should continue from, if a previous request did not show all results. To get the next results, make the request again with this value."pageSize": The number of resources in the paginated list.
Main.Rolesanywhere.put_attribute_mapping — Method
put_attribute_mapping(certificate_field, mapping_rules, profile_id)
put_attribute_mapping(certificate_field, mapping_rules, profile_id, params::Dict{String,<:Any})Put an entry in the attribute mapping rules that will be enforced by a given profile. A mapping specifies a certificate field and one or more specifiers that have contextual meanings.
Arguments
certificate_field: Fields (x509Subject, x509Issuer and x509SAN) within X.509 certificates.mapping_rules: A list of mapping entries for every supported specifier or sub-field.profile_id: The unique identifier of the profile.
Main.Rolesanywhere.put_notification_settings — Method
put_notification_settings(notification_settings, trust_anchor_id)
put_notification_settings(notification_settings, trust_anchor_id, params::Dict{String,<:Any})Attaches a list of notification settings to a trust anchor. A notification setting includes information such as event name, threshold, status of the notification setting, and the channel to notify. Required permissions: rolesanywhere:PutNotificationSettings.
Arguments
notification_settings: A list of notification settings to be associated to the trust anchor.trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.reset_notification_settings — Method
reset_notification_settings(notification_setting_keys, trust_anchor_id)
reset_notification_settings(notification_setting_keys, trust_anchor_id, params::Dict{String,<:Any})Resets the custom notification setting to IAM Roles Anywhere default setting. Required permissions: rolesanywhere:ResetNotificationSettings.
Arguments
notification_setting_keys: A list of notification setting keys to reset. A notification setting key includes the event and the channel.trust_anchor_id: The unique identifier of the trust anchor.
Main.Rolesanywhere.tag_resource — Method
tag_resource(resource_arn, tags)
tag_resource(resource_arn, tags, params::Dict{String,<:Any})Attaches tags to a resource. Required permissions: rolesanywhere:TagResource.
Arguments
resource_arn: The ARN of the resource.tags: The tags to attach to the resource.
Main.Rolesanywhere.untag_resource — Method
untag_resource(resource_arn, tag_keys)
untag_resource(resource_arn, tag_keys, params::Dict{String,<:Any})Removes tags from the resource. Required permissions: rolesanywhere:UntagResource.
Arguments
resource_arn: The ARN of the resource.tag_keys: A list of keys. Tag keys are the unique identifiers of tags.
Main.Rolesanywhere.update_crl — Method
update_crl(crl_id)
update_crl(crl_id, params::Dict{String,<:Any})Updates the certificate revocation list (CRL). A CRL is a list of certificates that have been revoked by the issuing certificate authority (CA). IAM Roles Anywhere validates against the CRL before issuing credentials. Required permissions: rolesanywhere:UpdateCrl.
Arguments
crl_id: The unique identifier of the certificate revocation list (CRL).
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"crlData": The x509 v3 specified certificate revocation list (CRL)."name": The name of the Crl.
Main.Rolesanywhere.update_profile — Method
update_profile(profile_id)
update_profile(profile_id, params::Dict{String,<:Any})Updates a profile, a list of the roles that IAM Roles Anywhere service is trusted to assume. You use profiles to intersect permissions with IAM managed policies. Required permissions: rolesanywhere:UpdateProfile.
Arguments
profile_id: The unique identifier of the profile.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"durationSeconds": Used to determine how long sessions vended using this profile are valid for. See the Expiration section of the CreateSession API documentation page for more details. In requests, if this value is not provided, the default value will be 3600."managedPolicyArns": A list of managed policy ARNs that apply to the vended session credentials."name": The name of the profile."roleArns": A list of IAM roles that this profile can assume in a temporary credential request."sessionPolicy": A session policy that applies to the trust boundary of the vended session credentials.
Main.Rolesanywhere.update_trust_anchor — Method
update_trust_anchor(trust_anchor_id)
update_trust_anchor(trust_anchor_id, params::Dict{String,<:Any})Updates a trust anchor. You establish trust between IAM Roles Anywhere and your certificate authority (CA) by configuring a trust anchor. You can define a trust anchor as a reference to an Private Certificate Authority (Private CA) or by uploading a CA certificate. Your Amazon Web Services workloads can authenticate with the trust anchor using certificates issued by the CA in exchange for temporary Amazon Web Services credentials. Required permissions: rolesanywhere:UpdateTrustAnchor.
Arguments
trust_anchor_id: The unique identifier of the trust anchor.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}. Valid keys are:
"name": The name of the trust anchor."source": The trust anchor type and its related certificate data.