All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.smithy.kotlin.runtime.identity.IdentityAttributes.kt Maven / Gradle / Ivy

/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

package aws.smithy.kotlin.runtime.identity

import aws.smithy.kotlin.runtime.collections.AttributeKey

/**
 * Common [Identity] attribute keys
 */
public object IdentityAttributes {
    /**
     * The name of the [IdentityProvider]
     */
    public val ProviderName: AttributeKey = AttributeKey("aws.smithy.kotlin#IdentityProviderName")
}

/**
 * The name of the [IdentityProvider] that sourced this [Identity]
 */
public val Identity.providerName: String?
    get() = attributes.getOrNull(IdentityAttributes.ProviderName)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy