Class: AWSCDK::Bedrock::CfnDataAutomationProject::ImageBoundingBoxProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Bedrock::CfnDataAutomationProject::ImageBoundingBoxProperty
- Defined in:
- bedrock/cfn_data_automation_project.rb
Overview
Bounding box settings for a project.
Instance Attribute Summary collapse
-
#state ⇒ String
readonly
Bounding box settings for a project.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(state:) ⇒ ImageBoundingBoxProperty
constructor
A new instance of ImageBoundingBoxProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(state:) ⇒ ImageBoundingBoxProperty
Returns a new instance of ImageBoundingBoxProperty.
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
#state ⇒ String (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_properties ⇒ Object
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_jsii ⇒ Object
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 |