Class GetPlanRequest

    • Method Detail

      • hasMapping

        public final boolean hasMapping()
        For responses, this returns true if the service returned a value for the Mapping property. This DOES NOT check that the value is non-empty (for which, you should check the isEmpty() method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
      • mapping

        public final List<MappingEntry> mapping()

        The list of mappings from a source table to target tables.

        Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.

        This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the hasMapping() method.

        Returns:
        The list of mappings from a source table to target tables.
      • source

        public final CatalogEntry source()

        The source table.

        Returns:
        The source table.
      • hasSinks

        public final boolean hasSinks()
        For responses, this returns true if the service returned a value for the Sinks property. This DOES NOT check that the value is non-empty (for which, you should check the isEmpty() method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
      • sinks

        public final List<CatalogEntry> sinks()

        The target tables.

        Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.

        This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the hasSinks() method.

        Returns:
        The target tables.
      • location

        public final Location location()

        The parameters for the mapping.

        Returns:
        The parameters for the mapping.
      • language

        public final Language language()

        The programming language of the code to perform the mapping.

        If the service returns an enum value that is not available in the current SDK version, language will return Language.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from languageAsString().

        Returns:
        The programming language of the code to perform the mapping.
        See Also:
        Language
      • languageAsString

        public final String languageAsString()

        The programming language of the code to perform the mapping.

        If the service returns an enum value that is not available in the current SDK version, language will return Language.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from languageAsString().

        Returns:
        The programming language of the code to perform the mapping.
        See Also:
        Language
      • hasAdditionalPlanOptionsMap

        public final boolean hasAdditionalPlanOptionsMap()
        For responses, this returns true if the service returned a value for the AdditionalPlanOptionsMap property. This DOES NOT check that the value is non-empty (for which, you should check the isEmpty() method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
      • additionalPlanOptionsMap

        public final Map<String,​String> additionalPlanOptionsMap()

        A map to hold additional optional key-value parameters.

        Currently, these key-value pairs are supported:

        • inferSchema  —  Specifies whether to set inferSchema to true or false for the default script generated by an Glue job. For example, to set inferSchema to true, pass the following key value pair:

          --additional-plan-options-map '{"inferSchema":"true"}'

        Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.

        This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the hasAdditionalPlanOptionsMap() method.

        Returns:
        A map to hold additional optional key-value parameters.

        Currently, these key-value pairs are supported:

        • inferSchema  —  Specifies whether to set inferSchema to true or false for the default script generated by an Glue job. For example, to set inferSchema to true, pass the following key value pair:

          --additional-plan-options-map '{"inferSchema":"true"}'

      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object