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

commonMain.aws.smithy.kotlin.runtime.util.PropertyProvider.kt Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

package aws.smithy.kotlin.runtime.util

/**
 * Provide a mapping from (JVM) property key to value
 */
public fun interface PropertyProvider {
    /**
     * Get a system property (on supported platforms)
     *
     * @param key name of environment variable
     * @return value of system property or null if undefined or platform does not support properties
     */
    public fun getProperty(key: String): String?
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy