export declare const BucketRuleStatus: { readonly Enabled: "Enabled"; readonly Disabled: "Disabled"; }; /** * If `Enabled` , the rule is currently being applied. If `Disabled` , the rule is not currently being applied. */ export type BucketRuleStatus = (typeof BucketRuleStatus)[keyof typeof BucketRuleStatus]; export declare const EndpointAccessType: { readonly CustomerOwnedIp: "CustomerOwnedIp"; readonly Private: "Private"; }; /** * The type of access for the on-premise network connectivity for the Outpost endpoint. To access endpoint from an on-premises network, you must specify the access type and provide the customer owned Ipv4 pool. */ export type EndpointAccessType = (typeof EndpointAccessType)[keyof typeof EndpointAccessType]; export declare const EndpointStatus: { readonly Available: "Available"; readonly Pending: "Pending"; readonly Deleting: "Deleting"; readonly CreateFailed: "Create_Failed"; readonly DeleteFailed: "Delete_Failed"; }; /** * The status of the endpoint. */ export type EndpointStatus = (typeof EndpointStatus)[keyof typeof EndpointStatus];