Class: Aws::Glue::Types::ViewDefinitionInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

A structure containing details for creating or updating an Glue view.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#definerString

The definer of a view in SQL.

Returns:

  • (String)


25325
25326
25327
25328
25329
25330
25331
25332
# File 'lib/aws-sdk-glue/types.rb', line 25325

class ViewDefinitionInput < Struct.new(
  :is_protected,
  :definer,
  :representations,
  :sub_objects)
  SENSITIVE = []
  include Aws::Structure
end

#is_protectedBoolean

You can set this flag as true to instruct the engine not to push user-provided operations into the logical plan of the view during query planning. However, setting this flag does not guarantee that the engine will comply. Refer to the engine’s documentation to understand the guarantees provided, if any.

Returns:

  • (Boolean)


25325
25326
25327
25328
25329
25330
25331
25332
# File 'lib/aws-sdk-glue/types.rb', line 25325

class ViewDefinitionInput < Struct.new(
  :is_protected,
  :definer,
  :representations,
  :sub_objects)
  SENSITIVE = []
  include Aws::Structure
end

#representationsArray<Types::ViewRepresentationInput>

A list of structures that contains the dialect of the view, and the query that defines the view.

Returns:



25325
25326
25327
25328
25329
25330
25331
25332
# File 'lib/aws-sdk-glue/types.rb', line 25325

class ViewDefinitionInput < Struct.new(
  :is_protected,
  :definer,
  :representations,
  :sub_objects)
  SENSITIVE = []
  include Aws::Structure
end

#sub_objectsArray<String>

A list of base table ARNs that make up the view.

Returns:

  • (Array<String>)


25325
25326
25327
25328
25329
25330
25331
25332
# File 'lib/aws-sdk-glue/types.rb', line 25325

class ViewDefinitionInput < Struct.new(
  :is_protected,
  :definer,
  :representations,
  :sub_objects)
  SENSITIVE = []
  include Aws::Structure
end