Class: AWSCDK::Bedrock::CfnDataAutomationProject::ImageBoundingBoxProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock/cfn_data_automation_project.rb

Overview

Bounding box settings for a project.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(state:) ⇒ ImageBoundingBoxProperty

Returns a new instance of ImageBoundingBoxProperty.

Parameters:

  • state (String)

    Bounding box settings for a project.



1450
1451
1452
1453
# File 'bedrock/cfn_data_automation_project.rb', line 1450

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

Instance Attribute Details

#stateString (readonly)

Bounding box settings for a project.



1459
1460
1461
# File 'bedrock/cfn_data_automation_project.rb', line 1459

def state
  @state
end

Class Method Details

.jsii_propertiesObject



1461
1462
1463
1464
1465
# File 'bedrock/cfn_data_automation_project.rb', line 1461

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

Instance Method Details

#to_jsiiObject



1467
1468
1469
1470
1471
1472
1473
# File 'bedrock/cfn_data_automation_project.rb', line 1467

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