commonMain.aws.smithy.kotlin.runtime.util.Annotations.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-jvm Show documentation
Show all versions of utils-jvm Show documentation
Utilities for working with the Smithy runtime
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
package aws.smithy.kotlin.runtime.util
/**
* API marked with this annotation is internal to the client runtime and it is not intended to be used outside.
* It could be modified or removed without any notice. Using it outside of the client-runtime could cause undefined behaviour and/or
* any strange effects.
*
* We strongly recommend to not use such API.
*/
@Suppress("DEPRECATION")
@RequiresOptIn(
level = RequiresOptIn.Level.ERROR,
message = "This API is internal to smithy-client-rt and should not be used. It could be removed or changed without notice."
)
@Experimental(level = Experimental.Level.ERROR)
@Target(
AnnotationTarget.CLASS,
AnnotationTarget.TYPEALIAS,
AnnotationTarget.FUNCTION,
AnnotationTarget.PROPERTY,
AnnotationTarget.FIELD,
AnnotationTarget.CONSTRUCTOR
)
annotation class InternalApi
© 2015 - 2025 Weber Informatics LLC | Privacy Policy