Class: AWSCDK::Sagemaker::CfnModelQualityJobDefinition::MonitoringGroundTruthS3InputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
sagemaker/cfn_model_quality_job_definition.rb

Overview

The ground truth labels for the dataset used for the monitoring job.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_uri:) ⇒ MonitoringGroundTruthS3InputProperty

Returns a new instance of MonitoringGroundTruthS3InputProperty.

Parameters:

  • s3_uri (String)

    The address of the Amazon S3 location of the ground truth labels.



1325
1326
1327
1328
# File 'sagemaker/cfn_model_quality_job_definition.rb', line 1325

def initialize(s3_uri:)
  @s3_uri = s3_uri
  Jsii::Type.check_type(@s3_uri, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "s3Uri")
end

Instance Attribute Details

#s3_uriString (readonly)

The address of the Amazon S3 location of the ground truth labels.



1334
1335
1336
# File 'sagemaker/cfn_model_quality_job_definition.rb', line 1334

def s3_uri
  @s3_uri
end

Class Method Details

.jsii_propertiesObject



1336
1337
1338
1339
1340
# File 'sagemaker/cfn_model_quality_job_definition.rb', line 1336

def self.jsii_properties
  {
    :s3_uri => "s3Uri",
  }
end

Instance Method Details

#to_jsiiObject



1342
1343
1344
1345
1346
1347
1348
# File 'sagemaker/cfn_model_quality_job_definition.rb', line 1342

def to_jsii
  result = {}
  result.merge!({
    "s3Uri" => @s3_uri,
  })
  result.compact
end