Class AccountRequest
- java.lang.Object
-
- pl.wrzasq.lambda.cform.account.model.AccountRequest
-
public class AccountRequest extends Object
Account CloudFormation request.
-
-
Field Summary
Fields Modifier and Type Field Description private StringaccountIdExisting account ID to invite into organization.private StringaccountNameName to label the account.private StringadministratorRoleNameRole name for the administration purposes.private StringemailE-mail address for which to create an account.private StringouIdOrganizational Unit ID in which to place an account.
-
Constructor Summary
Constructors Constructor Description AccountRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetAccountId()Existing account ID to invite into organization.StringgetAccountName()Name to label the account.StringgetAdministratorRoleName()Role name for the administration purposes.StringgetEmail()E-mail address for which to create an account.StringgetOuId()Organizational Unit ID in which to place an account.inthashCode()voidsetAccountId(String accountId)Existing account ID to invite into organization.voidsetAccountName(String accountName)Name to label the account.voidsetAdministratorRoleName(String administratorRoleName)Role name for the administration purposes.voidsetEmail(String email)E-mail address for which to create an account.voidsetOuId(String ouId)Organizational Unit ID in which to place an account.StringtoString()
-
-
-
Field Detail
-
accountId
private String accountId
Existing account ID to invite into organization.
-
email
private String email
E-mail address for which to create an account.
-
accountName
private String accountName
Name to label the account.
-
administratorRoleName
private String administratorRoleName
Role name for the administration purposes.
-
ouId
private String ouId
Organizational Unit ID in which to place an account.
-
-
Method Detail
-
getAccountId
public String getAccountId()
Existing account ID to invite into organization.
-
getEmail
public String getEmail()
E-mail address for which to create an account.
-
getAccountName
public String getAccountName()
Name to label the account.
-
getAdministratorRoleName
public String getAdministratorRoleName()
Role name for the administration purposes.
-
getOuId
public String getOuId()
Organizational Unit ID in which to place an account.
-
setAccountId
public void setAccountId(String accountId)
Existing account ID to invite into organization.
-
setEmail
public void setEmail(String email)
E-mail address for which to create an account.
-
setAccountName
public void setAccountName(String accountName)
Name to label the account.
-
setAdministratorRoleName
public void setAdministratorRoleName(String administratorRoleName)
Role name for the administration purposes.
-
setOuId
public void setOuId(String ouId)
Organizational Unit ID in which to place an account.
-
canEqual
protected boolean canEqual(Object other)
-
-