Class: Aws::ECS::Types::DeleteAccountSettingRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass DeleteAccountSettingRequest data as a hash:

{
  name: "serviceLongArnFormat", # required, accepts serviceLongArnFormat, taskLongArnFormat, containerInstanceLongArnFormat
  principal_arn: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The resource name for which to disable the new format. If ‘serviceLongArnFormat` is specified, the ARN for your Amazon ECS services is affected. If `taskLongArnFormat` is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If `containerInstanceLongArnFormat` is specified, the ARN and resource ID for your Amazon ECS container instances is affected.

Returns:

  • (String)


1923
1924
1925
1926
1927
# File 'lib/aws-sdk-ecs/types.rb', line 1923

class DeleteAccountSettingRequest < Struct.new(
  :name,
  :principal_arn)
  include Aws::Structure
end

#principal_arnString

The ARN of the principal, which can be an IAM user, IAM role, or the root user. If you specify the root user, it modifies the ARN and resource ID format for all IAM users, IAM roles, and the root user of the account unless an IAM user or role explicitly overrides these settings for themselves. If this field is omitted, the setting are changed only for the authenticated user.

Returns:

  • (String)


1923
1924
1925
1926
1927
# File 'lib/aws-sdk-ecs/types.rb', line 1923

class DeleteAccountSettingRequest < Struct.new(
  :name,
  :principal_arn)
  include Aws::Structure
end