Class: Aws::ECS::Types::Setting
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Setting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
The current account setting for a resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The Amazon ECS resource name.
-
#principal_arn ⇒ String
The ARN of the principal.
-
#value ⇒ String
Determines whether the account setting is on or off for the specified resource.
Instance Attribute Details
#name ⇒ String
The Amazon ECS resource name.
9025 9026 9027 9028 9029 9030 9031 |
# File 'lib/aws-sdk-ecs/types.rb', line 9025 class Setting < Struct.new( :name, :value, :principal_arn) SENSITIVE = [] include Aws::Structure end |
#principal_arn ⇒ String
The ARN of the principal. It can be a user, role, or the root user. If this field is omitted, the authenticated user is assumed.
9025 9026 9027 9028 9029 9030 9031 |
# File 'lib/aws-sdk-ecs/types.rb', line 9025 class Setting < Struct.new( :name, :value, :principal_arn) SENSITIVE = [] include Aws::Structure end |