Class: Aws::States::Types::TaskCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::TaskCredentials
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about the credentials that Step Functions uses for a task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_arn ⇒ String
The ARN of an IAM role that Step Functions assumes for the task.
Instance Attribute Details
#role_arn ⇒ String
The ARN of an IAM role that Step Functions assumes for the task. The role can allow cross-account access to resources.
3980 3981 3982 3983 3984 |
# File 'lib/aws-sdk-states/types.rb', line 3980 class TaskCredentials < Struct.new( :role_arn) SENSITIVE = [] include Aws::Structure end |