Class GetTypeResponse

    • Method Detail

      • keyspaceName

        public final String keyspaceName()

        The name of the keyspace that contains this type.

        Returns:
        The name of the keyspace that contains this type.
      • typeName

        public final String typeName()

        The name of the type.

        Returns:
        The name of the type.
      • hasFieldDefinitions

        public final boolean hasFieldDefinitions()
        For responses, this returns true if the service returned a value for the FieldDefinitions 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.
      • fieldDefinitions

        public final List<FieldDefinition> fieldDefinitions()

        The names and types that define this type.

        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 hasFieldDefinitions() method.

        Returns:
        The names and types that define this type.
      • lastModifiedTimestamp

        public final Instant lastModifiedTimestamp()

        The timestamp that shows when this type was last modified.

        Returns:
        The timestamp that shows when this type was last modified.
      • statusAsString

        public final String statusAsString()

        The status of this type.

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

        Returns:
        The status of this type.
        See Also:
        TypeStatus
      • hasDirectReferringTables

        public final boolean hasDirectReferringTables()
        For responses, this returns true if the service returned a value for the DirectReferringTables 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.
      • directReferringTables

        public final List<String> directReferringTables()

        The tables that use this type.

        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 hasDirectReferringTables() method.

        Returns:
        The tables that use this type.
      • hasDirectParentTypes

        public final boolean hasDirectParentTypes()
        For responses, this returns true if the service returned a value for the DirectParentTypes 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.
      • directParentTypes

        public final List<String> directParentTypes()

        The types that use this type.

        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 hasDirectParentTypes() method.

        Returns:
        The types that use this type.
      • maxNestingDepth

        public final Integer maxNestingDepth()

        The level of nesting implemented for this type.

        Returns:
        The level of nesting implemented for this type.
      • keyspaceArn

        public final String keyspaceArn()

        The unique identifier of the keyspace that contains this type in the format of an Amazon Resource Name (ARN).

        Returns:
        The unique identifier of the keyspace that contains this type in the format of an Amazon Resource Name (ARN).
      • 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