Class: AWSCDK::Sagemaker::CfnModelBiasJobDefinition::MonitoringGroundTruthS3InputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
sagemaker/cfn_model_bias_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.



1297
1298
1299
1300
# File 'sagemaker/cfn_model_bias_job_definition.rb', line 1297

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.



1306
1307
1308
# File 'sagemaker/cfn_model_bias_job_definition.rb', line 1306

def s3_uri
  @s3_uri
end

Class Method Details

.jsii_propertiesObject



1308
1309
1310
1311
1312
# File 'sagemaker/cfn_model_bias_job_definition.rb', line 1308

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

Instance Method Details

#to_jsiiObject



1314
1315
1316
1317
1318
1319
1320
# File 'sagemaker/cfn_model_bias_job_definition.rb', line 1314

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