/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The AWS::Macie::Session resource specifies a new Amazon Macie session. A session is an object that represents the Amazon Macie service. A session is required for Amazon Macie to become operational. */ export interface AwsMacieSession { /** * AWS account ID of customer */ AwsAccountId?: string; /** * A enumeration value that specifies the status of the Macie Session. */ Status?: "ENABLED" | "PAUSED"; /** * A enumeration value that specifies how frequently finding updates are published. */ FindingPublishingFrequency?: "FIFTEEN_MINUTES" | "ONE_HOUR" | "SIX_HOURS"; /** * Service role used by Macie */ ServiceRole?: string; }