Class ClientSymbolProperties
java.lang.Object
software.amazon.smithy.java.codegen.client.ClientSymbolProperties
Contains client-specific properties that may be added to symbols by smithy-java.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic 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
-
Field Details
-
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_SYMBOLSymbol representing the async implementation of Symbol.This property is expected on all
Serviceshape symbols. -
CLIENT_IMPL
public static final software.amazon.smithy.codegen.core.Property<software.amazon.smithy.codegen.core.Symbol> CLIENT_IMPLSymbol representing the implementation class for a client.This property is expected on all
Serviceshape symbols.
-