@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
22 lines (21 loc) • 970 B
TypeScript
export declare const LoggingConfigurationState: {
readonly Creating: "CREATING";
readonly CreateFailed: "CREATE_FAILED";
readonly Deleting: "DELETING";
readonly DeleteFailed: "DELETE_FAILED";
readonly Updating: "UPDATING";
readonly UpdatingFailed: "UPDATING_FAILED";
readonly Active: "ACTIVE";
};
/**
* The state of the logging configuration. When the state is ACTIVE, the configuration is ready to log chat content.
*/
export type LoggingConfigurationState = (typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
export declare const RoomMessageReviewHandlerFallbackResult: {
readonly Allow: "ALLOW";
readonly Deny: "DENY";
};
/**
* Specifies the fallback behavior if the handler does not return a valid response, encounters an error, or times out.
*/
export type RoomMessageReviewHandlerFallbackResult = (typeof RoomMessageReviewHandlerFallbackResult)[keyof typeof RoomMessageReviewHandlerFallbackResult];