import * as $dara from '@darabonba/typescript'; export declare class CreateRoleResponseBodyRole extends $dara.Model { /** * @remarks * The Alibaba Cloud Resource Name (ARN) of the RAM role. * * @example * acs:ram::123456789012****:role/ECSAdmin */ arn?: string; /** * @remarks * The trust policy that specifies the trusted entity to assume the RAM role. * * @example * { "Statement": [ { "Action": "sts:AssumeRole", "Effect": "Allow", "Principal": { "RAM": "acs:ram::123456789012****:root" } } ], "Version": "1" } */ assumeRolePolicyDocument?: string; /** * @remarks * The time when the RAM role was created. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * The description of the RAM role. * * @example * ECS administrator */ description?: string; /** * @remarks * The maximum session time of the RAM role. * * @example * 3600 */ maxSessionDuration?: number; /** * @remarks * The ID of the RAM role. * * @example * 901234567890**** */ roleId?: string; /** * @remarks * The name of the RAM role. * * @example * ECSAdmin */ roleName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateRoleResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 04F0F334-1335-436C-A1D7-6C044FE73368 */ requestId?: string; /** * @remarks * The information about the RAM role. */ role?: CreateRoleResponseBodyRole; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }