export declare const AccountJoinedMethod: { readonly Invited: "INVITED"; readonly Created: "CREATED"; }; /** * The method by which the account joined the organization. */ export type AccountJoinedMethod = (typeof AccountJoinedMethod)[keyof typeof AccountJoinedMethod]; export declare const AccountState: { readonly PendingActivation: "PENDING_ACTIVATION"; readonly Active: "ACTIVE"; readonly Suspended: "SUSPENDED"; readonly PendingClosure: "PENDING_CLOSURE"; readonly Closed: "CLOSED"; }; /** * The state of the account in the organization. */ export type AccountState = (typeof AccountState)[keyof typeof AccountState]; export declare const AccountStatus: { readonly Active: "ACTIVE"; readonly Suspended: "SUSPENDED"; readonly PendingClosure: "PENDING_CLOSURE"; }; /** * The status of the account in the organization. */ export type AccountStatus = (typeof AccountStatus)[keyof typeof AccountStatus]; export declare const OrganizationFeatureSet: { readonly All: "ALL"; readonly ConsolidatedBilling: "CONSOLIDATED_BILLING"; }; /** * Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality. */ export type OrganizationFeatureSet = (typeof OrganizationFeatureSet)[keyof typeof OrganizationFeatureSet]; export declare const PolicyType: { readonly AiservicesOptOutPolicy: "AISERVICES_OPT_OUT_POLICY"; readonly BackupPolicy: "BACKUP_POLICY"; readonly BedrockPolicy: "BEDROCK_POLICY"; readonly ChatbotPolicy: "CHATBOT_POLICY"; readonly DeclarativePolicyEc2: "DECLARATIVE_POLICY_EC2"; readonly InspectorPolicy: "INSPECTOR_POLICY"; readonly NetworkSecurityDirectorPolicy: "NETWORK_SECURITY_DIRECTOR_POLICY"; readonly ResourceControlPolicy: "RESOURCE_CONTROL_POLICY"; readonly S3Policy: "S3_POLICY"; readonly SecurityhubPolicy: "SECURITYHUB_POLICY"; readonly ServiceControlPolicy: "SERVICE_CONTROL_POLICY"; readonly TagPolicy: "TAG_POLICY"; readonly UpgradeRolloutPolicy: "UPGRADE_ROLLOUT_POLICY"; }; /** * The type of policy to create. You can specify one of the following values: AISERVICES_OPT_OUT_POLICY, BACKUP_POLICY, BEDROCK_POLICY, CHATBOT_POLICY, DECLARATIVE_POLICY_EC2, INSPECTOR_POLICY, NETWORK_SECURITY_DIRECTOR_POLICY, RESOURCE_CONTROL_POLICY, S3_POLICY, SECURITYHUB_POLICY, SERVICE_CONTROL_POLICY, TAG_POLICY, UPGRADE_ROLLOUT_POLICY */ export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];