Class: Aws::SecurityHub::Types::AwsRdsDbInstanceAssociatedRole
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsRdsDbInstanceAssociatedRole
- Includes:
- Aws::Structure
- Defined in:
- 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.
16227 16228 16229 16230 16231 16232 16233 |
# File 'lib/aws-sdk-securityhub/types.rb', line 16227 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.
16227 16228 16229 16230 16231 16232 16233 |
# File 'lib/aws-sdk-securityhub/types.rb', line 16227 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.
16227 16228 16229 16230 16231 16232 16233 |
# File 'lib/aws-sdk-securityhub/types.rb', line 16227 class AwsRdsDbInstanceAssociatedRole < Struct.new( :role_arn, :feature_name, :status) SENSITIVE = [] include Aws::Structure end |