/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CodePipeline { namespace Model { /** *

Represents an AWS session credentials object. These credentials are temporary * credentials that are issued by AWS Secure Token Service (STS). They can be used * to access input and output artifacts in the S3 bucket used to store artifact for * the pipeline in AWS CodePipeline.

See Also:

AWS * API Reference

*/ class AWS_CODEPIPELINE_API AWSSessionCredentials { public: AWSSessionCredentials(); AWSSessionCredentials(Aws::Utils::Json::JsonView jsonValue); AWSSessionCredentials& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The access key for the session.

*/ inline const Aws::String& GetAccessKeyId() const{ return m_accessKeyId; } /** *

The access key for the session.

*/ inline bool AccessKeyIdHasBeenSet() const { return m_accessKeyIdHasBeenSet; } /** *

The access key for the session.

*/ inline void SetAccessKeyId(const Aws::String& value) { m_accessKeyIdHasBeenSet = true; m_accessKeyId = value; } /** *

The access key for the session.

*/ inline void SetAccessKeyId(Aws::String&& value) { m_accessKeyIdHasBeenSet = true; m_accessKeyId = std::move(value); } /** *

The access key for the session.

*/ inline void SetAccessKeyId(const char* value) { m_accessKeyIdHasBeenSet = true; m_accessKeyId.assign(value); } /** *

The access key for the session.

*/ inline AWSSessionCredentials& WithAccessKeyId(const Aws::String& value) { SetAccessKeyId(value); return *this;} /** *

The access key for the session.

*/ inline AWSSessionCredentials& WithAccessKeyId(Aws::String&& value) { SetAccessKeyId(std::move(value)); return *this;} /** *

The access key for the session.

*/ inline AWSSessionCredentials& WithAccessKeyId(const char* value) { SetAccessKeyId(value); return *this;} /** *

The secret access key for the session.

*/ inline const Aws::String& GetSecretAccessKey() const{ return m_secretAccessKey; } /** *

The secret access key for the session.

*/ inline bool SecretAccessKeyHasBeenSet() const { return m_secretAccessKeyHasBeenSet; } /** *

The secret access key for the session.

*/ inline void SetSecretAccessKey(const Aws::String& value) { m_secretAccessKeyHasBeenSet = true; m_secretAccessKey = value; } /** *

The secret access key for the session.

*/ inline void SetSecretAccessKey(Aws::String&& value) { m_secretAccessKeyHasBeenSet = true; m_secretAccessKey = std::move(value); } /** *

The secret access key for the session.

*/ inline void SetSecretAccessKey(const char* value) { m_secretAccessKeyHasBeenSet = true; m_secretAccessKey.assign(value); } /** *

The secret access key for the session.

*/ inline AWSSessionCredentials& WithSecretAccessKey(const Aws::String& value) { SetSecretAccessKey(value); return *this;} /** *

The secret access key for the session.

*/ inline AWSSessionCredentials& WithSecretAccessKey(Aws::String&& value) { SetSecretAccessKey(std::move(value)); return *this;} /** *

The secret access key for the session.

*/ inline AWSSessionCredentials& WithSecretAccessKey(const char* value) { SetSecretAccessKey(value); return *this;} /** *

The token for the session.

*/ inline const Aws::String& GetSessionToken() const{ return m_sessionToken; } /** *

The token for the session.

*/ inline bool SessionTokenHasBeenSet() const { return m_sessionTokenHasBeenSet; } /** *

The token for the session.

*/ inline void SetSessionToken(const Aws::String& value) { m_sessionTokenHasBeenSet = true; m_sessionToken = value; } /** *

The token for the session.

*/ inline void SetSessionToken(Aws::String&& value) { m_sessionTokenHasBeenSet = true; m_sessionToken = std::move(value); } /** *

The token for the session.

*/ inline void SetSessionToken(const char* value) { m_sessionTokenHasBeenSet = true; m_sessionToken.assign(value); } /** *

The token for the session.

*/ inline AWSSessionCredentials& WithSessionToken(const Aws::String& value) { SetSessionToken(value); return *this;} /** *

The token for the session.

*/ inline AWSSessionCredentials& WithSessionToken(Aws::String&& value) { SetSessionToken(std::move(value)); return *this;} /** *

The token for the session.

*/ inline AWSSessionCredentials& WithSessionToken(const char* value) { SetSessionToken(value); return *this;} private: Aws::String m_accessKeyId; bool m_accessKeyIdHasBeenSet; Aws::String m_secretAccessKey; bool m_secretAccessKeyHasBeenSet; Aws::String m_sessionToken; bool m_sessionTokenHasBeenSet; }; } // namespace Model } // namespace CodePipeline } // namespace Aws