commonMain.aws.smithy.kotlin.runtime.auth.awscredentials.SigV4aClientConfig.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.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