AWS Glue Scala ResolveSpec APIs - AWS Glue
Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.

AWS Glue Scala ResolveSpec APIs

Package: com.amazonaws.services.glue

ResolveSpec object

ResolveSpec

object ResolveSpec

Def

def apply( path : String, action : String ) : ResolveSpec

Creates a ResolveSpec.

  • path — A string representation of the choice field that needs to be resolved.

  • action — A resolution action. The action can be one of the following: Project, KeepAsStruct, or Cast.

Returns the ResolveSpec.

Def

def apply( product : Product2[String, String] ) : ResolveSpec

Creates a ResolveSpec.

  • product — Product2 of: source path, resolution action.

Returns the ResolveSpec.

ResolveSpec case class

case class ResolveSpec extends Product2[String, String] ( path : SchemaPath, action : String )

Creates a ResolveSpec.

  • path — The SchemaPath of the choice field that needs to be resolved.

  • action — A resolution action. The action can be one of the following: Project, KeepAsStruct, or Cast.

ResolveSpec def methods

def _1 : String
def _2 : String