1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 package software.amazon.awssdk.crt.s3; 6 7 public class S3ExpressCredentialsProperties { 8 private String hostValue; 9 private String region; 10 withHostValue(String hostValue)11 public S3ExpressCredentialsProperties withHostValue (String hostValue) { 12 this.hostValue = hostValue; 13 return this; 14 } 15 getHostValue()16 public String getHostValue () { 17 return this.hostValue; 18 } 19 withRegion(String region)20 public S3ExpressCredentialsProperties withRegion (String region) { 21 this.region = region; 22 return this; 23 } 24 getRegion()25 public String getRegion () { 26 return this.region; 27 } 28 } 29