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

software.amazon.awssdk.services.sagemakerfeaturestoreruntime.SageMakerFeatureStoreRuntimeServiceClientConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Sage Maker Feature Store Runtime module holds the client classes that are used for communicating with Sage Maker Feature Store Runtime.

There is a newer version: 2.28.0
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.sagemakerfeaturestoreruntime;

import java.net.URI;
import java.util.Map;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.awscore.AwsServiceClientConfiguration;
import software.amazon.awssdk.core.client.config.ClientOverrideConfiguration;
import software.amazon.awssdk.endpoints.EndpointProvider;
import software.amazon.awssdk.http.auth.spi.scheme.AuthScheme;
import software.amazon.awssdk.identity.spi.AwsCredentialsIdentity;
import software.amazon.awssdk.identity.spi.IdentityProvider;
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.sagemakerfeaturestoreruntime.auth.scheme.SageMakerFeatureStoreRuntimeAuthSchemeProvider;
import software.amazon.awssdk.services.sagemakerfeaturestoreruntime.internal.SageMakerFeatureStoreRuntimeServiceClientConfigurationBuilder;

/**
 * Class to expose the service client settings to the user. Implementation of {@link AwsServiceClientConfiguration}
 */
@Generated("software.amazon.awssdk:codegen")
@SdkPublicApi
public final class SageMakerFeatureStoreRuntimeServiceClientConfiguration extends AwsServiceClientConfiguration {
    private final SageMakerFeatureStoreRuntimeAuthSchemeProvider authSchemeProvider;

    public SageMakerFeatureStoreRuntimeServiceClientConfiguration(Builder builder) {
        super(builder);
        this.authSchemeProvider = builder.authSchemeProvider();
    }

    public static Builder builder() {
        return new SageMakerFeatureStoreRuntimeServiceClientConfigurationBuilder();
    }

    /**
     * Gets the value for auth scheme provider
     */
    public SageMakerFeatureStoreRuntimeAuthSchemeProvider authSchemeProvider() {
        return authSchemeProvider;
    }

    /**
     * A builder for creating a {@link SageMakerFeatureStoreRuntimeServiceClientConfiguration}
     */
    public interface Builder extends AwsServiceClientConfiguration.Builder {
        /**
         * Sets the value for client override configuration
         */
        @Override
        Builder overrideConfiguration(ClientOverrideConfiguration overrideConfiguration);

        /**
         * Gets the value for client override configuration
         */
        @Override
        ClientOverrideConfiguration overrideConfiguration();

        /**
         * Sets the value for endpoint override
         */
        @Override
        Builder endpointOverride(URI endpointOverride);

        /**
         * Gets the value for endpoint override
         */
        @Override
        URI endpointOverride();

        /**
         * Sets the value for endpoint provider
         */
        @Override
        Builder endpointProvider(EndpointProvider endpointProvider);

        /**
         * Gets the value for endpoint provider
         */
        @Override
        EndpointProvider endpointProvider();

        /**
         * Sets the value for AWS region
         */
        @Override
        Builder region(Region region);

        /**
         * Gets the value for AWS region
         */
        @Override
        Region region();

        /**
         * Sets the value for credentials provider
         */
        @Override
        Builder credentialsProvider(IdentityProvider credentialsProvider);

        /**
         * Gets the value for credentials provider
         */
        @Override
        IdentityProvider credentialsProvider();

        @Override
        Builder putAuthScheme(AuthScheme authScheme);

        /**
         * Gets the value for auth schemes
         */
        @Override
        Map> authSchemes();

        /**
         * Sets the value for auth scheme provider
         */
        Builder authSchemeProvider(SageMakerFeatureStoreRuntimeAuthSchemeProvider authSchemeProvider);

        /**
         * Gets the value for auth scheme provider
         */
        SageMakerFeatureStoreRuntimeAuthSchemeProvider authSchemeProvider();

        @Override
        SageMakerFeatureStoreRuntimeServiceClientConfiguration build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy