Class: AWSCDK::Bedrock::CfnDataAutomationProject::VideoBoundingBoxProperty

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

Overview

Bounding box settings for video.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(state:) ⇒ VideoBoundingBoxProperty

Returns a new instance of VideoBoundingBoxProperty.

Parameters:

  • state (String)

    Whether bounding boxes are enabled for video.



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

#stateString (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_propertiesObject



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_jsiiObject



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