• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
5  * the License. A copy of the License is located at
6  *
7  * http://aws.amazon.com/apache2.0
8  *
9  * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
10  * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
11  * and limitations under the License.
12  */
13 
14 package software.amazon.awssdk.services.kms;
15 
16 import software.amazon.awssdk.annotations.Generated;
17 import software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder;
18 
19 /**
20  * A builder for creating an instance of {@link KmsAsyncClient}. This can be created with the static
21  * {@link KmsAsyncClient#builder()} method.
22  */
23 @Generated("software.amazon.awssdk:codegen")
24 public interface KmsAsyncClientBuilder extends AwsAsyncClientBuilder<KmsAsyncClientBuilder, KmsAsyncClient>,
25         KmsBaseClientBuilder<KmsAsyncClientBuilder, KmsAsyncClient> {
26 }
27