Class ClientSymbolProperties

java.lang.Object
software.amazon.smithy.java.codegen.client.ClientSymbolProperties

public final class ClientSymbolProperties extends Object
Contains client-specific properties that may be added to symbols by smithy-java.
See Also:
  • for other properties that may be added to symbols.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final software.amazon.smithy.codegen.core.Property<Boolean>
    Indicates if a symbol represents an async implementation.
    static final software.amazon.smithy.codegen.core.Property<software.amazon.smithy.codegen.core.Symbol>
    Symbol representing the async implementation of Symbol.
    static final software.amazon.smithy.codegen.core.Property<software.amazon.smithy.codegen.core.Symbol>
    Symbol representing the implementation class for a client.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • ASYNC

      public static final software.amazon.smithy.codegen.core.Property<Boolean> ASYNC
      Indicates if a symbol represents an async implementation.
    • ASYNC_SYMBOL

      public static final software.amazon.smithy.codegen.core.Property<software.amazon.smithy.codegen.core.Symbol> ASYNC_SYMBOL
      Symbol representing the async implementation of Symbol.

      This property is expected on all Service shape symbols.

    • CLIENT_IMPL

      public static final software.amazon.smithy.codegen.core.Property<software.amazon.smithy.codegen.core.Symbol> CLIENT_IMPL
      Symbol representing the implementation class for a client.

      This property is expected on all Service shape symbols.