def _create_stack_outputs()

in source/lib/blueprints/byom/model_monitor.py [0:0]


    def _create_stack_outputs(self):
        core.CfnOutput(
            self,
            id="BaselineName",
            value=self.baseline_job_name.value_as_string,
        )
        core.CfnOutput(
            self,
            id="MonitoringScheduleJobName",
            value=self.monitoring_schedule_name.value_as_string,
        )
        core.CfnOutput(
            self,
            id="MonitoringScheduleType",
            value=self.monitoring_type,
        )
        core.CfnOutput(
            self,
            id="BaselineJobOutput",
            value=f"https://s3.console.aws.amazon.com/s3/buckets/{self.baseline_job_output_location.value_as_string}/",
        )
        core.CfnOutput(
            self,
            id="MonitoringScheduleOutput",
            value=(
                f"https://s3.console.aws.amazon.com/s3/buckets/{self.monitoring_output_location.value_as_string}/"
                f"{self.endpoint_name.value_as_string}/{self.monitoring_schedule_name.value_as_string}/"
            ),
        )
        core.CfnOutput(
            self,
            id="MonitoredSagemakerEndpoint",
            value=self.endpoint_name.value_as_string,
        )
        core.CfnOutput(
            self,
            id="DataCaptureS3Location",
            value=(
                f"https://s3.console.aws.amazon.com/s3/buckets/{self.data_capture_s3_location.value_as_string}"
                f"/{self.endpoint_name.value_as_string}/"
            ),
        )