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

commonMain.aws.smithy.kotlin.runtime.auth.awscredentials.SigV4aClientConfig.kt Maven / Gradle / Ivy

There is a newer version: 1.3.31
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
package aws.smithy.kotlin.runtime.auth.awscredentials

/**
 * The configuration properties for a client that supports SigV4a
 */
public interface SigV4aClientConfig {
    /**
     * The set of regions to use when signing a request with SigV4a.
     */
    public val sigV4aSigningRegionSet: Set?

    public interface Builder {
        /**
         * The set of regions to use when signing a request with SigV4a.
         */
        public var sigV4aSigningRegionSet: Set?
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy