/** * @public * @enum */ export declare const VariableType: { readonly INCIDENT_RECORD_ARN: "INCIDENT_RECORD_ARN"; readonly INVOLVED_RESOURCES: "INVOLVED_RESOURCES"; }; /** * @public */ export type VariableType = (typeof VariableType)[keyof typeof VariableType]; /** * @public * @enum */ export declare const SsmTargetAccount: { readonly IMPACTED_ACCOUNT: "IMPACTED_ACCOUNT"; readonly RESPONSE_PLAN_OWNER_ACCOUNT: "RESPONSE_PLAN_OWNER_ACCOUNT"; }; /** * @public */ export type SsmTargetAccount = (typeof SsmTargetAccount)[keyof typeof SsmTargetAccount]; /** * @public * @enum */ export declare const ResourceType: { readonly INCIDENT_RECORD: "INCIDENT_RECORD"; readonly REPLICATION_SET: "REPLICATION_SET"; readonly RESOURCE_POLICY: "RESOURCE_POLICY"; readonly RESPONSE_PLAN: "RESPONSE_PLAN"; readonly TIMELINE_EVENT: "TIMELINE_EVENT"; }; /** * @public */ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType]; /** * @public * @enum */ export declare const ServiceCode: { readonly SSM_INCIDENTS: "ssm-incidents"; }; /** * @public */ export type ServiceCode = (typeof ServiceCode)[keyof typeof ServiceCode]; /** * @public * @enum */ export declare const IncidentRecordStatus: { readonly OPEN: "OPEN"; readonly RESOLVED: "RESOLVED"; }; /** * @public */ export type IncidentRecordStatus = (typeof IncidentRecordStatus)[keyof typeof IncidentRecordStatus]; /** * @public * @enum */ export declare const RegionStatus: { /** * All operations have completed successfully and the region is ready to use */ readonly ACTIVE: "ACTIVE"; /** * The region is in the process of being created. */ readonly CREATING: "CREATING"; /** * The region is in the process of being deleted. */ readonly DELETING: "DELETING"; /** * The region is not healthy and we cannot automatically fix it. */ readonly FAILED: "FAILED"; }; /** * @public */ export type RegionStatus = (typeof RegionStatus)[keyof typeof RegionStatus]; /** * @public * @enum */ export declare const ReplicationSetStatus: { /** * All operations have completed successfully and the replication set is ready to use */ readonly ACTIVE: "ACTIVE"; /** * Replication set is in the process of being created. */ readonly CREATING: "CREATING"; /** * Replication set is in the process of being deleted. */ readonly DELETING: "DELETING"; /** * Replication set is not healthy and we cannot fix it. */ readonly FAILED: "FAILED"; /** * Replication set is in the process of being updated. */ readonly UPDATING: "UPDATING"; }; /** * @public */ export type ReplicationSetStatus = (typeof ReplicationSetStatus)[keyof typeof ReplicationSetStatus]; /** * @public * @enum */ export declare const ItemType: { readonly ANALYSIS: "ANALYSIS"; readonly ATTACHMENT: "ATTACHMENT"; readonly AUTOMATION: "AUTOMATION"; readonly INCIDENT: "INCIDENT"; readonly INVOLVED_RESOURCE: "INVOLVED_RESOURCE"; readonly METRIC: "METRIC"; readonly OTHER: "OTHER"; readonly PARENT: "PARENT"; readonly TASK: "TASK"; }; /** * @public */ export type ItemType = (typeof ItemType)[keyof typeof ItemType]; /** * @public * @enum */ export declare const TimelineEventSort: { readonly EVENT_TIME: "EVENT_TIME"; }; /** * @public */ export type TimelineEventSort = (typeof TimelineEventSort)[keyof typeof TimelineEventSort]; /** * @public * @enum */ export declare const SortOrder: { readonly ASCENDING: "ASCENDING"; readonly DESCENDING: "DESCENDING"; }; /** * @public */ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];