196 lines
9.0 KiB
C++
196 lines
9.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/iam/IAM_EXPORTS.h>
|
|
#include <aws/iam/IAMRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace IAM
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_IAM_API CreateServiceSpecificCredentialRequest : public IAMRequest
|
|
{
|
|
public:
|
|
CreateServiceSpecificCredentialRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "CreateServiceSpecificCredential"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline const Aws::String& GetUserName() const{ return m_userName; }
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline bool UserNameHasBeenSet() const { return m_userNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline void SetUserName(const Aws::String& value) { m_userNameHasBeenSet = true; m_userName = value; }
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline void SetUserName(Aws::String&& value) { m_userNameHasBeenSet = true; m_userName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline void SetUserName(const char* value) { m_userNameHasBeenSet = true; m_userName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithUserName(const Aws::String& value) { SetUserName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithUserName(Aws::String&& value) { SetUserName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the IAM user that is to be associated with the credentials. The
|
|
* new service-specific credentials have the same permissions as the associated
|
|
* user except that they can be used only to access the specified service.</p>
|
|
* <p>This parameter allows (through its <a
|
|
* href="http://wikipedia.org/wiki/regex">regex pattern</a>) a string of characters
|
|
* consisting of upper and lowercase alphanumeric characters with no spaces. You
|
|
* can also include any of the following characters: _+=,.@-</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithUserName(const char* value) { SetUserName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline const Aws::String& GetServiceName() const{ return m_serviceName; }
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; }
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the AWS service that is to be associated with the credentials.
|
|
* The service you specify here is the only service that can be accessed using
|
|
* these credentials.</p>
|
|
*/
|
|
inline CreateServiceSpecificCredentialRequest& WithServiceName(const char* value) { SetServiceName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_userName;
|
|
bool m_userNameHasBeenSet;
|
|
|
|
Aws::String m_serviceName;
|
|
bool m_serviceNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace IAM
|
|
} // namespace Aws
|