/** *

The current account setting for a resource.

*/ export interface _Setting { /** *

The Amazon ECS resource name.

*/ name?: "serviceLongArnFormat" | "taskLongArnFormat" | "containerInstanceLongArnFormat" | "awsvpcTrunking" | "containerInsights" | string; /** *

Whether the account setting is enabled or disabled for the specified resource.

*/ value?: string; /** *

The ARN of the principal, which can be an IAM user, IAM role, or the root user. If this field is omitted, the authenticated user is assumed.

*/ principalArn?: string; } export declare type _UnmarshalledSetting = _Setting;