Class: AWSCDK::Bedrock::CfnDataAutomationProject::VideoBoundingBoxProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Bedrock::CfnDataAutomationProject::VideoBoundingBoxProperty
- Defined in:
- bedrock/cfn_data_automation_project.rb
Overview
Bounding box settings for video.
Instance Attribute Summary collapse
-
#state ⇒ String
readonly
Whether bounding boxes are enabled for video.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(state:) ⇒ VideoBoundingBoxProperty
constructor
A new instance of VideoBoundingBoxProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(state:) ⇒ VideoBoundingBoxProperty
Returns a new instance of VideoBoundingBoxProperty.
2163 2164 2165 2166 |
# File 'bedrock/cfn_data_automation_project.rb', line 2163 def initialize(state:) @state = state Jsii::Type.check_type(@state, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "state") end |
Instance Attribute Details
#state ⇒ String (readonly)
Whether bounding boxes are enabled for video.
2172 2173 2174 |
# File 'bedrock/cfn_data_automation_project.rb', line 2172 def state @state end |
Class Method Details
.jsii_properties ⇒ Object
2174 2175 2176 2177 2178 |
# File 'bedrock/cfn_data_automation_project.rb', line 2174 def self.jsii_properties { :state => "state", } end |
Instance Method Details
#to_jsii ⇒ Object
2180 2181 2182 2183 2184 2185 2186 |
# File 'bedrock/cfn_data_automation_project.rb', line 2180 def to_jsii result = {} result.merge!({ "state" => @state, }) result.compact end |