Class: Aws::ResilienceHub::Types::PermissionModel

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb

Overview

Defines the roles and credentials that Resilience Hub would use while creating the application, importing its resources, and running an assessment.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cross_account_role_arnsArray<String>

Defines a list of role Amazon Resource Names (ARNs) to be used in other accounts. These ARNs are used for querying purposes while importing resources and assessing your application.

* These ARNs are required only when your resources are in other accounts and you have different role name in these accounts. Else, the invoker role name will be used in the other accounts.

  • These roles must have a trust policy with iam:AssumeRole permission to the invoker role in the primary account.

Returns:

  • (Array<String>)


4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb', line 4074

class PermissionModel < Struct.new(
  :cross_account_role_arns,
  :invoker_role_name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#invoker_role_nameString

Existing Amazon Web Services IAM role name in the primary Amazon Web Services account that will be assumed by Resilience Hub Service Principle to obtain a read-only access to your application resources while running an assessment.

* You must have iam:passRole permission for this role while creating or updating the application.

  • Currently, invokerRoleName accepts only [A-Za-z0-9_+=,.@-] characters.

Returns:

  • (String)


4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb', line 4074

class PermissionModel < Struct.new(
  :cross_account_role_arns,
  :invoker_role_name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

Defines how Resilience Hub scans your resources. It can scan for the resources by using a pre-existing role in your Amazon Web Services account, or by using the credentials of the current IAM user.

Returns:

  • (String)


4074
4075
4076
4077
4078
4079
4080
# File 'gems/aws-sdk-resiliencehub/lib/aws-sdk-resiliencehub/types.rb', line 4074

class PermissionModel < Struct.new(
  :cross_account_role_arns,
  :invoker_role_name,
  :type)
  SENSITIVE = []
  include Aws::Structure
end