Class: Aws::SecurityHub::Types::AwsRdsDbInstanceAssociatedRole
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsRdsDbInstanceAssociatedRole
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
An IAM role associated with the DB instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#feature_name ⇒ String
The name of the feature associated with the IAM role.
-
#role_arn ⇒ String
The ARN of the IAM role that is associated with the DB instance.
-
#status ⇒ String
Describes the state of the association between the IAM role and the DB instance.
Instance Attribute Details
#feature_name ⇒ String
The name of the feature associated with the IAM role.
15635 15636 15637 15638 15639 15640 15641 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 15635 class AwsRdsDbInstanceAssociatedRole < Struct.new( :role_arn, :feature_name, :status) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the IAM role that is associated with the DB instance.
15635 15636 15637 15638 15639 15640 15641 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 15635 class AwsRdsDbInstanceAssociatedRole < Struct.new( :role_arn, :feature_name, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Describes the state of the association between the IAM role and the
DB instance. The Status
property returns one of the following
values:
ACTIVE
- The IAM role ARN is associated with the DB instance and can be used to access other Amazon Web Services services on your behalf.PENDING
- The IAM role ARN is being associated with the DB instance.INVALID
- The IAM role ARN is associated with the DB instance. But the DB instance is unable to assume the IAM role in order to access other Amazon Web Services services on your behalf.
15635 15636 15637 15638 15639 15640 15641 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 15635 class AwsRdsDbInstanceAssociatedRole < Struct.new( :role_arn, :feature_name, :status) SENSITIVE = [] include Aws::Structure end |