1. Packages
  2. AWS Native
  3. API Docs
  4. sagemaker
  5. MonitoringSchedule

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

aws-native.sagemaker.MonitoringSchedule

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

    Resource Type definition for AWS::SageMaker::MonitoringSchedule

    Create MonitoringSchedule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MonitoringSchedule(name: string, args: MonitoringScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def MonitoringSchedule(resource_name: str,
                           args: MonitoringScheduleArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def MonitoringSchedule(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           monitoring_schedule_config: Optional[MonitoringScheduleConfigArgs] = None,
                           endpoint_name: Optional[str] = None,
                           failure_reason: Optional[str] = None,
                           last_monitoring_execution_summary: Optional[MonitoringScheduleMonitoringExecutionSummaryArgs] = None,
                           monitoring_schedule_name: Optional[str] = None,
                           monitoring_schedule_status: Optional[MonitoringScheduleStatus] = None,
                           tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
    func NewMonitoringSchedule(ctx *Context, name string, args MonitoringScheduleArgs, opts ...ResourceOption) (*MonitoringSchedule, error)
    public MonitoringSchedule(string name, MonitoringScheduleArgs args, CustomResourceOptions? opts = null)
    public MonitoringSchedule(String name, MonitoringScheduleArgs args)
    public MonitoringSchedule(String name, MonitoringScheduleArgs args, CustomResourceOptions options)
    
    type: aws-native:sagemaker:MonitoringSchedule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args MonitoringScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args MonitoringScheduleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args MonitoringScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MonitoringScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MonitoringScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    const monitoringScheduleResource = new aws_native.sagemaker.MonitoringSchedule("monitoringScheduleResource", {
        monitoringScheduleConfig: {
            monitoringJobDefinition: {
                monitoringAppSpecification: {
                    imageUri: "string",
                    containerArguments: ["string"],
                    containerEntrypoint: ["string"],
                    postAnalyticsProcessorSourceUri: "string",
                    recordPreprocessorSourceUri: "string",
                },
                monitoringInputs: [{
                    batchTransformInput: {
                        dataCapturedDestinationS3Uri: "string",
                        datasetFormat: {
                            csv: {
                                header: false,
                            },
                            json: {
                                line: false,
                            },
                            parquet: false,
                        },
                        localPath: "string",
                        excludeFeaturesAttribute: "string",
                        s3DataDistributionType: aws_native.sagemaker.MonitoringScheduleBatchTransformInputS3DataDistributionType.FullyReplicated,
                        s3InputMode: aws_native.sagemaker.MonitoringScheduleBatchTransformInputS3InputMode.Pipe,
                    },
                    endpointInput: {
                        endpointName: "string",
                        localPath: "string",
                        excludeFeaturesAttribute: "string",
                        s3DataDistributionType: aws_native.sagemaker.MonitoringScheduleEndpointInputS3DataDistributionType.FullyReplicated,
                        s3InputMode: aws_native.sagemaker.MonitoringScheduleEndpointInputS3InputMode.Pipe,
                    },
                }],
                monitoringOutputConfig: {
                    monitoringOutputs: [{
                        s3Output: {
                            localPath: "string",
                            s3Uri: "string",
                            s3UploadMode: aws_native.sagemaker.MonitoringScheduleS3OutputS3UploadMode.Continuous,
                        },
                    }],
                    kmsKeyId: "string",
                },
                monitoringResources: {
                    clusterConfig: {
                        instanceCount: 0,
                        instanceType: "string",
                        volumeSizeInGb: 0,
                        volumeKmsKeyId: "string",
                    },
                },
                roleArn: "string",
                baselineConfig: {
                    constraintsResource: {
                        s3Uri: "string",
                    },
                    statisticsResource: {
                        s3Uri: "string",
                    },
                },
                environment: "any",
                networkConfig: {
                    enableInterContainerTrafficEncryption: false,
                    enableNetworkIsolation: false,
                    vpcConfig: {
                        securityGroupIds: ["string"],
                        subnets: ["string"],
                    },
                },
                stoppingCondition: {
                    maxRuntimeInSeconds: 0,
                },
            },
            monitoringJobDefinitionName: "string",
            monitoringType: aws_native.sagemaker.MonitoringScheduleMonitoringType.DataQuality,
            scheduleConfig: {
                scheduleExpression: "string",
                dataAnalysisEndTime: "string",
                dataAnalysisStartTime: "string",
            },
        },
        endpointName: "string",
        failureReason: "string",
        lastMonitoringExecutionSummary: {
            creationTime: "string",
            lastModifiedTime: "string",
            monitoringExecutionStatus: aws_native.sagemaker.MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus.Pending,
            monitoringScheduleName: "string",
            scheduledTime: "string",
            endpointName: "string",
            failureReason: "string",
            processingJobArn: "string",
        },
        monitoringScheduleName: "string",
        monitoringScheduleStatus: aws_native.sagemaker.MonitoringScheduleStatus.Pending,
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    Coming soon!
    

    MonitoringSchedule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The MonitoringSchedule resource accepts the following input properties:

    MonitoringScheduleConfig MonitoringScheduleConfigArgs
    EndpointName string
    FailureReason string
    Contains the reason a monitoring job failed, if it failed.
    LastMonitoringExecutionSummary MonitoringScheduleMonitoringExecutionSummaryArgs
    Describes metadata on the last execution to run, if there was one.
    MonitoringScheduleName string
    MonitoringScheduleStatus MonitoringScheduleStatus
    The status of a schedule job.
    Tags TagArgs
    An array of key-value pairs to apply to this resource.
    monitoringScheduleConfig MonitoringScheduleConfig
    endpointName String
    failureReason String
    Contains the reason a monitoring job failed, if it failed.
    lastMonitoringExecutionSummary MonitoringScheduleMonitoringExecutionSummary
    Describes metadata on the last execution to run, if there was one.
    monitoringScheduleName String
    monitoringScheduleStatus MonitoringScheduleStatus
    The status of a schedule job.
    tags List<Tag>
    An array of key-value pairs to apply to this resource.
    monitoringScheduleConfig MonitoringScheduleConfig
    endpointName string
    failureReason string
    Contains the reason a monitoring job failed, if it failed.
    lastMonitoringExecutionSummary MonitoringScheduleMonitoringExecutionSummary
    Describes metadata on the last execution to run, if there was one.
    monitoringScheduleName string
    monitoringScheduleStatus MonitoringScheduleStatus
    The status of a schedule job.
    tags Tag[]
    An array of key-value pairs to apply to this resource.
    monitoring_schedule_config MonitoringScheduleConfigArgs
    endpoint_name str
    failure_reason str
    Contains the reason a monitoring job failed, if it failed.
    last_monitoring_execution_summary MonitoringScheduleMonitoringExecutionSummaryArgs
    Describes metadata on the last execution to run, if there was one.
    monitoring_schedule_name str
    monitoring_schedule_status MonitoringScheduleStatus
    The status of a schedule job.
    tags Sequence[TagArgs]
    An array of key-value pairs to apply to this resource.
    monitoringScheduleConfig Property Map
    endpointName String
    failureReason String
    Contains the reason a monitoring job failed, if it failed.
    lastMonitoringExecutionSummary Property Map
    Describes metadata on the last execution to run, if there was one.
    monitoringScheduleName String
    monitoringScheduleStatus "Pending" | "Failed" | "Scheduled" | "Stopped"
    The status of a schedule job.
    tags List<Property Map>
    An array of key-value pairs to apply to this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MonitoringSchedule resource produces the following output properties:

    CreationTime string
    The time at which the schedule was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    MonitoringScheduleArn string
    The Amazon Resource Name (ARN) of the monitoring schedule.
    CreationTime string
    The time at which the schedule was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    MonitoringScheduleArn string
    The Amazon Resource Name (ARN) of the monitoring schedule.
    creationTime String
    The time at which the schedule was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime String
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringScheduleArn String
    The Amazon Resource Name (ARN) of the monitoring schedule.
    creationTime string
    The time at which the schedule was created.
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringScheduleArn string
    The Amazon Resource Name (ARN) of the monitoring schedule.
    creation_time str
    The time at which the schedule was created.
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified_time str
    A timestamp that indicates the last time the monitoring job was modified.
    monitoring_schedule_arn str
    The Amazon Resource Name (ARN) of the monitoring schedule.
    creationTime String
    The time at which the schedule was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTime String
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringScheduleArn String
    The Amazon Resource Name (ARN) of the monitoring schedule.

    Supporting Types

    MonitoringScheduleBaselineConfig, MonitoringScheduleBaselineConfigArgs

    MonitoringScheduleBatchTransformInput, MonitoringScheduleBatchTransformInputArgs

    DataCapturedDestinationS3Uri string
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    DatasetFormat Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleDatasetFormat
    LocalPath string
    Path to the filesystem where the endpoint data is available to the container.
    ExcludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    S3DataDistributionType Pulumi.AwsNative.SageMaker.MonitoringScheduleBatchTransformInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    S3InputMode Pulumi.AwsNative.SageMaker.MonitoringScheduleBatchTransformInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    DataCapturedDestinationS3Uri string
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    DatasetFormat MonitoringScheduleDatasetFormat
    LocalPath string
    Path to the filesystem where the endpoint data is available to the container.
    ExcludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    S3DataDistributionType MonitoringScheduleBatchTransformInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    S3InputMode MonitoringScheduleBatchTransformInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    dataCapturedDestinationS3Uri String
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    datasetFormat MonitoringScheduleDatasetFormat
    localPath String
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute String
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType MonitoringScheduleBatchTransformInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode MonitoringScheduleBatchTransformInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    dataCapturedDestinationS3Uri string
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    datasetFormat MonitoringScheduleDatasetFormat
    localPath string
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType MonitoringScheduleBatchTransformInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode MonitoringScheduleBatchTransformInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    data_captured_destination_s3_uri str
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    dataset_format MonitoringScheduleDatasetFormat
    local_path str
    Path to the filesystem where the endpoint data is available to the container.
    exclude_features_attribute str
    Indexes or names of the features to be excluded from analysis
    s3_data_distribution_type MonitoringScheduleBatchTransformInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3_input_mode MonitoringScheduleBatchTransformInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    dataCapturedDestinationS3Uri String
    A URI that identifies the Amazon S3 storage location where Batch Transform Job captures data.
    datasetFormat Property Map
    localPath String
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute String
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType "FullyReplicated" | "ShardedByS3Key"
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode "Pipe" | "File"
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.

    MonitoringScheduleBatchTransformInputS3DataDistributionType, MonitoringScheduleBatchTransformInputS3DataDistributionTypeArgs

    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    MonitoringScheduleBatchTransformInputS3DataDistributionTypeFullyReplicated
    FullyReplicated
    MonitoringScheduleBatchTransformInputS3DataDistributionTypeShardedByS3Key
    ShardedByS3Key
    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    FULLY_REPLICATED
    FullyReplicated
    SHARDED_BY_S3_KEY
    ShardedByS3Key
    "FullyReplicated"
    FullyReplicated
    "ShardedByS3Key"
    ShardedByS3Key

    MonitoringScheduleBatchTransformInputS3InputMode, MonitoringScheduleBatchTransformInputS3InputModeArgs

    Pipe
    Pipe
    File
    File
    MonitoringScheduleBatchTransformInputS3InputModePipe
    Pipe
    MonitoringScheduleBatchTransformInputS3InputModeFile
    File
    Pipe
    Pipe
    File
    File
    Pipe
    Pipe
    File
    File
    PIPE
    Pipe
    FILE
    File
    "Pipe"
    Pipe
    "File"
    File

    MonitoringScheduleClusterConfig, MonitoringScheduleClusterConfigArgs

    InstanceCount int
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    InstanceType string
    The ML compute instance type for the processing job.
    VolumeSizeInGb int
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    VolumeKmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.
    InstanceCount int
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    InstanceType string
    The ML compute instance type for the processing job.
    VolumeSizeInGb int
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    VolumeKmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.
    instanceCount Integer
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    instanceType String
    The ML compute instance type for the processing job.
    volumeSizeInGb Integer
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    volumeKmsKeyId String
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.
    instanceCount number
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    instanceType string
    The ML compute instance type for the processing job.
    volumeSizeInGb number
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    volumeKmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.
    instance_count int
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    instance_type str
    The ML compute instance type for the processing job.
    volume_size_in_gb int
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    volume_kms_key_id str
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.
    instanceCount Number
    The number of ML compute instances to use in the model monitoring job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
    instanceType String
    The ML compute instance type for the processing job.
    volumeSizeInGb Number
    The size of the ML storage volume, in gigabytes, that you want to provision. You must specify sufficient ML storage for your scenario.
    volumeKmsKeyId String
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the model monitoring job.

    MonitoringScheduleConfig, MonitoringScheduleConfigArgs

    MonitoringScheduleConstraintsResource, MonitoringScheduleConstraintsResourceArgs

    S3Uri string
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.
    S3Uri string
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.
    s3Uri String
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.
    s3Uri string
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.
    s3_uri str
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.
    s3Uri String
    The Amazon S3 URI for baseline constraint file in Amazon S3 that the current monitoring job should validated against.

    MonitoringScheduleCsv, MonitoringScheduleCsvArgs

    Header bool
    A boolean flag indicating if given CSV has header
    Header bool
    A boolean flag indicating if given CSV has header
    header Boolean
    A boolean flag indicating if given CSV has header
    header boolean
    A boolean flag indicating if given CSV has header
    header bool
    A boolean flag indicating if given CSV has header
    header Boolean
    A boolean flag indicating if given CSV has header

    MonitoringScheduleDatasetFormat, MonitoringScheduleDatasetFormatArgs

    MonitoringScheduleEndpointInput, MonitoringScheduleEndpointInputArgs

    EndpointName string
    LocalPath string
    Path to the filesystem where the endpoint data is available to the container.
    ExcludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    S3DataDistributionType Pulumi.AwsNative.SageMaker.MonitoringScheduleEndpointInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    S3InputMode Pulumi.AwsNative.SageMaker.MonitoringScheduleEndpointInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    EndpointName string
    LocalPath string
    Path to the filesystem where the endpoint data is available to the container.
    ExcludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    S3DataDistributionType MonitoringScheduleEndpointInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    S3InputMode MonitoringScheduleEndpointInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    endpointName String
    localPath String
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute String
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType MonitoringScheduleEndpointInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode MonitoringScheduleEndpointInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    endpointName string
    localPath string
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute string
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType MonitoringScheduleEndpointInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode MonitoringScheduleEndpointInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    endpoint_name str
    local_path str
    Path to the filesystem where the endpoint data is available to the container.
    exclude_features_attribute str
    Indexes or names of the features to be excluded from analysis
    s3_data_distribution_type MonitoringScheduleEndpointInputS3DataDistributionType
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3_input_mode MonitoringScheduleEndpointInputS3InputMode
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
    endpointName String
    localPath String
    Path to the filesystem where the endpoint data is available to the container.
    excludeFeaturesAttribute String
    Indexes or names of the features to be excluded from analysis
    s3DataDistributionType "FullyReplicated" | "ShardedByS3Key"
    Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key. Defauts to FullyReplicated
    s3InputMode "Pipe" | "File"
    Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.

    MonitoringScheduleEndpointInputS3DataDistributionType, MonitoringScheduleEndpointInputS3DataDistributionTypeArgs

    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    MonitoringScheduleEndpointInputS3DataDistributionTypeFullyReplicated
    FullyReplicated
    MonitoringScheduleEndpointInputS3DataDistributionTypeShardedByS3Key
    ShardedByS3Key
    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    FullyReplicated
    FullyReplicated
    ShardedByS3Key
    ShardedByS3Key
    FULLY_REPLICATED
    FullyReplicated
    SHARDED_BY_S3_KEY
    ShardedByS3Key
    "FullyReplicated"
    FullyReplicated
    "ShardedByS3Key"
    ShardedByS3Key

    MonitoringScheduleEndpointInputS3InputMode, MonitoringScheduleEndpointInputS3InputModeArgs

    Pipe
    Pipe
    File
    File
    MonitoringScheduleEndpointInputS3InputModePipe
    Pipe
    MonitoringScheduleEndpointInputS3InputModeFile
    File
    Pipe
    Pipe
    File
    File
    Pipe
    Pipe
    File
    File
    PIPE
    Pipe
    FILE
    File
    "Pipe"
    Pipe
    "File"
    File

    MonitoringScheduleJson, MonitoringScheduleJsonArgs

    Line bool
    A boolean flag indicating if it is JSON line format
    Line bool
    A boolean flag indicating if it is JSON line format
    line Boolean
    A boolean flag indicating if it is JSON line format
    line boolean
    A boolean flag indicating if it is JSON line format
    line bool
    A boolean flag indicating if it is JSON line format
    line Boolean
    A boolean flag indicating if it is JSON line format

    MonitoringScheduleMonitoringAppSpecification, MonitoringScheduleMonitoringAppSpecificationArgs

    ImageUri string
    The container image to be run by the monitoring job.
    ContainerArguments List<string>
    An array of arguments for the container used to run the monitoring job.
    ContainerEntrypoint List<string>
    Specifies the entrypoint for a container used to run the monitoring job.
    PostAnalyticsProcessorSourceUri string
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    RecordPreprocessorSourceUri string
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers
    ImageUri string
    The container image to be run by the monitoring job.
    ContainerArguments []string
    An array of arguments for the container used to run the monitoring job.
    ContainerEntrypoint []string
    Specifies the entrypoint for a container used to run the monitoring job.
    PostAnalyticsProcessorSourceUri string
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    RecordPreprocessorSourceUri string
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers
    imageUri String
    The container image to be run by the monitoring job.
    containerArguments List<String>
    An array of arguments for the container used to run the monitoring job.
    containerEntrypoint List<String>
    Specifies the entrypoint for a container used to run the monitoring job.
    postAnalyticsProcessorSourceUri String
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    recordPreprocessorSourceUri String
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers
    imageUri string
    The container image to be run by the monitoring job.
    containerArguments string[]
    An array of arguments for the container used to run the monitoring job.
    containerEntrypoint string[]
    Specifies the entrypoint for a container used to run the monitoring job.
    postAnalyticsProcessorSourceUri string
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    recordPreprocessorSourceUri string
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers
    image_uri str
    The container image to be run by the monitoring job.
    container_arguments Sequence[str]
    An array of arguments for the container used to run the monitoring job.
    container_entrypoint Sequence[str]
    Specifies the entrypoint for a container used to run the monitoring job.
    post_analytics_processor_source_uri str
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    record_preprocessor_source_uri str
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers
    imageUri String
    The container image to be run by the monitoring job.
    containerArguments List<String>
    An array of arguments for the container used to run the monitoring job.
    containerEntrypoint List<String>
    Specifies the entrypoint for a container used to run the monitoring job.
    postAnalyticsProcessorSourceUri String
    An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
    recordPreprocessorSourceUri String
    An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers

    MonitoringScheduleMonitoringExecutionSummary, MonitoringScheduleMonitoringExecutionSummaryArgs

    CreationTime string
    The time at which the monitoring job was created.
    LastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    MonitoringExecutionStatus Pulumi.AwsNative.SageMaker.MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus
    The status of the monitoring job.
    MonitoringScheduleName string
    ScheduledTime string
    The time the monitoring job was scheduled.
    EndpointName string
    FailureReason string
    Contains the reason a monitoring job failed, if it failed.
    ProcessingJobArn string
    The Amazon Resource Name (ARN) of the monitoring job.
    CreationTime string
    The time at which the monitoring job was created.
    LastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    MonitoringExecutionStatus MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus
    The status of the monitoring job.
    MonitoringScheduleName string
    ScheduledTime string
    The time the monitoring job was scheduled.
    EndpointName string
    FailureReason string
    Contains the reason a monitoring job failed, if it failed.
    ProcessingJobArn string
    The Amazon Resource Name (ARN) of the monitoring job.
    creationTime String
    The time at which the monitoring job was created.
    lastModifiedTime String
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringExecutionStatus MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus
    The status of the monitoring job.
    monitoringScheduleName String
    scheduledTime String
    The time the monitoring job was scheduled.
    endpointName String
    failureReason String
    Contains the reason a monitoring job failed, if it failed.
    processingJobArn String
    The Amazon Resource Name (ARN) of the monitoring job.
    creationTime string
    The time at which the monitoring job was created.
    lastModifiedTime string
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringExecutionStatus MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus
    The status of the monitoring job.
    monitoringScheduleName string
    scheduledTime string
    The time the monitoring job was scheduled.
    endpointName string
    failureReason string
    Contains the reason a monitoring job failed, if it failed.
    processingJobArn string
    The Amazon Resource Name (ARN) of the monitoring job.
    creation_time str
    The time at which the monitoring job was created.
    last_modified_time str
    A timestamp that indicates the last time the monitoring job was modified.
    monitoring_execution_status MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus
    The status of the monitoring job.
    monitoring_schedule_name str
    scheduled_time str
    The time the monitoring job was scheduled.
    endpoint_name str
    failure_reason str
    Contains the reason a monitoring job failed, if it failed.
    processing_job_arn str
    The Amazon Resource Name (ARN) of the monitoring job.
    creationTime String
    The time at which the monitoring job was created.
    lastModifiedTime String
    A timestamp that indicates the last time the monitoring job was modified.
    monitoringExecutionStatus "Pending" | "Completed" | "CompletedWithViolations" | "InProgress" | "Failed" | "Stopping" | "Stopped"
    The status of the monitoring job.
    monitoringScheduleName String
    scheduledTime String
    The time the monitoring job was scheduled.
    endpointName String
    failureReason String
    Contains the reason a monitoring job failed, if it failed.
    processingJobArn String
    The Amazon Resource Name (ARN) of the monitoring job.

    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatus, MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusArgs

    Pending
    Pending
    Completed
    Completed
    CompletedWithViolations
    CompletedWithViolations
    InProgress
    InProgress
    Failed
    Failed
    Stopping
    Stopping
    Stopped
    Stopped
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusPending
    Pending
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusCompleted
    Completed
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusCompletedWithViolations
    CompletedWithViolations
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusInProgress
    InProgress
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusFailed
    Failed
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusStopping
    Stopping
    MonitoringScheduleMonitoringExecutionSummaryMonitoringExecutionStatusStopped
    Stopped
    Pending
    Pending
    Completed
    Completed
    CompletedWithViolations
    CompletedWithViolations
    InProgress
    InProgress
    Failed
    Failed
    Stopping
    Stopping
    Stopped
    Stopped
    Pending
    Pending
    Completed
    Completed
    CompletedWithViolations
    CompletedWithViolations
    InProgress
    InProgress
    Failed
    Failed
    Stopping
    Stopping
    Stopped
    Stopped
    PENDING
    Pending
    COMPLETED
    Completed
    COMPLETED_WITH_VIOLATIONS
    CompletedWithViolations
    IN_PROGRESS
    InProgress
    FAILED
    Failed
    STOPPING
    Stopping
    STOPPED
    Stopped
    "Pending"
    Pending
    "Completed"
    Completed
    "CompletedWithViolations"
    CompletedWithViolations
    "InProgress"
    InProgress
    "Failed"
    Failed
    "Stopping"
    Stopping
    "Stopped"
    Stopped

    MonitoringScheduleMonitoringInput, MonitoringScheduleMonitoringInputArgs

    MonitoringScheduleMonitoringJobDefinition, MonitoringScheduleMonitoringJobDefinitionArgs

    MonitoringAppSpecification Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleMonitoringAppSpecification
    MonitoringInputs List<Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleMonitoringInput>
    MonitoringOutputConfig Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleMonitoringOutputConfig
    MonitoringResources Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleMonitoringResources
    RoleArn string
    The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
    BaselineConfig Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleBaselineConfig
    Environment object
    Sets the environment variables in the Docker container
    NetworkConfig Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleNetworkConfig
    StoppingCondition Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleStoppingCondition
    monitoringAppSpecification Property Map
    monitoringInputs List<Property Map>
    monitoringOutputConfig Property Map
    monitoringResources Property Map
    roleArn String
    The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
    baselineConfig Property Map
    environment Any
    Sets the environment variables in the Docker container
    networkConfig Property Map
    stoppingCondition Property Map

    MonitoringScheduleMonitoringOutput, MonitoringScheduleMonitoringOutputArgs

    MonitoringScheduleMonitoringOutputConfig, MonitoringScheduleMonitoringOutputConfigArgs

    MonitoringOutputs List<Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleMonitoringOutput>
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    KmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
    MonitoringOutputs []MonitoringScheduleMonitoringOutput
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    KmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
    monitoringOutputs List<MonitoringScheduleMonitoringOutput>
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    kmsKeyId String
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
    monitoringOutputs MonitoringScheduleMonitoringOutput[]
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    kmsKeyId string
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
    monitoring_outputs Sequence[MonitoringScheduleMonitoringOutput]
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    kms_key_id str
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
    monitoringOutputs List<Property Map>
    Monitoring outputs for monitoring jobs. This is where the output of the periodic monitoring jobs is uploaded.
    kmsKeyId String
    The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.

    MonitoringScheduleMonitoringResources, MonitoringScheduleMonitoringResourcesArgs

    MonitoringScheduleMonitoringType, MonitoringScheduleMonitoringTypeArgs

    DataQuality
    DataQuality
    ModelQuality
    ModelQuality
    ModelBias
    ModelBias
    ModelExplainability
    ModelExplainability
    MonitoringScheduleMonitoringTypeDataQuality
    DataQuality
    MonitoringScheduleMonitoringTypeModelQuality
    ModelQuality
    MonitoringScheduleMonitoringTypeModelBias
    ModelBias
    MonitoringScheduleMonitoringTypeModelExplainability
    ModelExplainability
    DataQuality
    DataQuality
    ModelQuality
    ModelQuality
    ModelBias
    ModelBias
    ModelExplainability
    ModelExplainability
    DataQuality
    DataQuality
    ModelQuality
    ModelQuality
    ModelBias
    ModelBias
    ModelExplainability
    ModelExplainability
    DATA_QUALITY
    DataQuality
    MODEL_QUALITY
    ModelQuality
    MODEL_BIAS
    ModelBias
    MODEL_EXPLAINABILITY
    ModelExplainability
    "DataQuality"
    DataQuality
    "ModelQuality"
    ModelQuality
    "ModelBias"
    ModelBias
    "ModelExplainability"
    ModelExplainability

    MonitoringScheduleNetworkConfig, MonitoringScheduleNetworkConfigArgs

    EnableInterContainerTrafficEncryption bool
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    EnableNetworkIsolation bool
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    VpcConfig Pulumi.AwsNative.SageMaker.Inputs.MonitoringScheduleVpcConfig
    EnableInterContainerTrafficEncryption bool
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    EnableNetworkIsolation bool
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    VpcConfig MonitoringScheduleVpcConfig
    enableInterContainerTrafficEncryption Boolean
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    enableNetworkIsolation Boolean
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    vpcConfig MonitoringScheduleVpcConfig
    enableInterContainerTrafficEncryption boolean
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    enableNetworkIsolation boolean
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    vpcConfig MonitoringScheduleVpcConfig
    enable_inter_container_traffic_encryption bool
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    enable_network_isolation bool
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    vpc_config MonitoringScheduleVpcConfig
    enableInterContainerTrafficEncryption Boolean
    Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
    enableNetworkIsolation Boolean
    Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
    vpcConfig Property Map

    MonitoringScheduleS3Output, MonitoringScheduleS3OutputArgs

    LocalPath string
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    S3Uri string
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    S3UploadMode Pulumi.AwsNative.SageMaker.MonitoringScheduleS3OutputS3UploadMode
    Whether to upload the results of the monitoring job continuously or after the job completes.
    LocalPath string
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    S3Uri string
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    S3UploadMode MonitoringScheduleS3OutputS3UploadMode
    Whether to upload the results of the monitoring job continuously or after the job completes.
    localPath String
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    s3Uri String
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    s3UploadMode MonitoringScheduleS3OutputS3UploadMode
    Whether to upload the results of the monitoring job continuously or after the job completes.
    localPath string
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    s3Uri string
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    s3UploadMode MonitoringScheduleS3OutputS3UploadMode
    Whether to upload the results of the monitoring job continuously or after the job completes.
    local_path str
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    s3_uri str
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    s3_upload_mode MonitoringScheduleS3OutputS3UploadMode
    Whether to upload the results of the monitoring job continuously or after the job completes.
    localPath String
    The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
    s3Uri String
    A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
    s3UploadMode "Continuous" | "EndOfJob"
    Whether to upload the results of the monitoring job continuously or after the job completes.

    MonitoringScheduleS3OutputS3UploadMode, MonitoringScheduleS3OutputS3UploadModeArgs

    Continuous
    Continuous
    EndOfJob
    EndOfJob
    MonitoringScheduleS3OutputS3UploadModeContinuous
    Continuous
    MonitoringScheduleS3OutputS3UploadModeEndOfJob
    EndOfJob
    Continuous
    Continuous
    EndOfJob
    EndOfJob
    Continuous
    Continuous
    EndOfJob
    EndOfJob
    CONTINUOUS
    Continuous
    END_OF_JOB
    EndOfJob
    "Continuous"
    Continuous
    "EndOfJob"
    EndOfJob

    MonitoringScheduleScheduleConfig, MonitoringScheduleScheduleConfigArgs

    ScheduleExpression string
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    DataAnalysisEndTime string
    Data Analysis end time, e.g. PT0H
    DataAnalysisStartTime string
    Data Analysis start time, e.g. -PT1H
    ScheduleExpression string
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    DataAnalysisEndTime string
    Data Analysis end time, e.g. PT0H
    DataAnalysisStartTime string
    Data Analysis start time, e.g. -PT1H
    scheduleExpression String
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    dataAnalysisEndTime String
    Data Analysis end time, e.g. PT0H
    dataAnalysisStartTime String
    Data Analysis start time, e.g. -PT1H
    scheduleExpression string
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    dataAnalysisEndTime string
    Data Analysis end time, e.g. PT0H
    dataAnalysisStartTime string
    Data Analysis start time, e.g. -PT1H
    schedule_expression str
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    data_analysis_end_time str
    Data Analysis end time, e.g. PT0H
    data_analysis_start_time str
    Data Analysis start time, e.g. -PT1H
    scheduleExpression String
    A cron expression or 'NOW' that describes details about the monitoring schedule.
    dataAnalysisEndTime String
    Data Analysis end time, e.g. PT0H
    dataAnalysisStartTime String
    Data Analysis start time, e.g. -PT1H

    MonitoringScheduleStatisticsResource, MonitoringScheduleStatisticsResourceArgs

    S3Uri string
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
    S3Uri string
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
    s3Uri String
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
    s3Uri string
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
    s3_uri str
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
    s3Uri String
    The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.

    MonitoringScheduleStatus, MonitoringScheduleStatusArgs

    Pending
    Pending
    Failed
    Failed
    Scheduled
    Scheduled
    Stopped
    Stopped
    MonitoringScheduleStatusPending
    Pending
    MonitoringScheduleStatusFailed
    Failed
    MonitoringScheduleStatusScheduled
    Scheduled
    MonitoringScheduleStatusStopped
    Stopped
    Pending
    Pending
    Failed
    Failed
    Scheduled
    Scheduled
    Stopped
    Stopped
    Pending
    Pending
    Failed
    Failed
    Scheduled
    Scheduled
    Stopped
    Stopped
    PENDING
    Pending
    FAILED
    Failed
    SCHEDULED
    Scheduled
    STOPPED
    Stopped
    "Pending"
    Pending
    "Failed"
    Failed
    "Scheduled"
    Scheduled
    "Stopped"
    Stopped

    MonitoringScheduleStoppingCondition, MonitoringScheduleStoppingConditionArgs

    MaxRuntimeInSeconds int
    The maximum runtime allowed in seconds.
    MaxRuntimeInSeconds int
    The maximum runtime allowed in seconds.
    maxRuntimeInSeconds Integer
    The maximum runtime allowed in seconds.
    maxRuntimeInSeconds number
    The maximum runtime allowed in seconds.
    max_runtime_in_seconds int
    The maximum runtime allowed in seconds.
    maxRuntimeInSeconds Number
    The maximum runtime allowed in seconds.

    MonitoringScheduleVpcConfig, MonitoringScheduleVpcConfigArgs

    SecurityGroupIds List<string>
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    Subnets List<string>
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.
    SecurityGroupIds []string
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    Subnets []string
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.
    securityGroupIds List<String>
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    subnets List<String>
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.
    securityGroupIds string[]
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    subnets string[]
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.
    security_group_ids Sequence[str]
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    subnets Sequence[str]
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.
    securityGroupIds List<String>
    The VPC security group IDs, in the form sg-xxxxxxxx. Specify the security groups for the VPC that is specified in the Subnets field.
    subnets List<String>
    The ID of the subnets in the VPC to which you want to connect to your monitoring jobs.

    Tag, TagArgs

    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi