Class: Aws::RDS::Types::AddRoleToDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::AddRoleToDBInstanceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass AddRoleToDBInstanceMessage data as a hash:
{
db_instance_identifier: "String", # required
role_arn: "String", # required
feature_name: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_instance_identifier ⇒ String
The name of the DB instance to associate the IAM role with.
-
#feature_name ⇒ String
The name of the feature for the DB instance that the IAM role is to be associated with.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example `arn:aws:iam::123456789012:role/AccessRole`.
Instance Attribute Details
#db_instance_identifier ⇒ String
The name of the DB instance to associate the IAM role with.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-rds/types.rb', line 208 class AddRoleToDBInstanceMessage < Struct.new( :db_instance_identifier, :role_arn, :feature_name) SENSITIVE = [] include Aws::Structure end |
#feature_name ⇒ String
The name of the feature for the DB instance that the IAM role is to be associated with. For information about supported feature names, see DBEngineVersion.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-rds/types.rb', line 208 class AddRoleToDBInstanceMessage < Struct.new( :db_instance_identifier, :role_arn, :feature_name) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to associate with the DB instance, for example `arn:aws:iam::123456789012:role/AccessRole`.
208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-rds/types.rb', line 208 class AddRoleToDBInstanceMessage < Struct.new( :db_instance_identifier, :role_arn, :feature_name) SENSITIVE = [] include Aws::Structure end |