com.amazonaws.services.chatbot.model.TeamsChannelConfiguration Maven / Gradle / Ivy
Show all versions of aws-java-sdk-chatbot Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.chatbot.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
* An AWS Chatbot configuration for Microsoft Teams.
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TeamsChannelConfiguration implements Serializable, Cloneable, StructuredPojo {
/** The ID of the Microsoft Teams channel. */
private String channelId;
/** The name of the Microsoft Teams channel. */
private String channelName;
/**
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from
* the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator
* Guide.
*/
private String teamId;
/** The name of the Microsoft Teams Team. */
private String teamName;
/** The ID of the Microsoft Teams tenant. */
private String tenantId;
/** The ARN of the MicrosoftTeamsChannelConfiguration. */
private String chatConfigurationArn;
/**
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
*/
private String iamRoleArn;
/** The ARNs of the SNS topics that deliver notifications to AWS Chatbot. */
private java.util.List snsTopicArns;
/** The name of the configuration. */
private String configurationName;
/** Logging levels include ERROR, INFO, or NONE. */
private String loggingLevel;
/**
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy
* is applied by default if this is not set.
*/
private java.util.List guardrailPolicyArns;
/** Enables use of a user role requirement in your chat configuration. */
private Boolean userAuthorizationRequired;
/** A list of tags applied to the configuration. */
private java.util.List tags;
/**
* The ID of the Microsoft Teams channel.
*
* @param channelId
* The ID of the Microsoft Teams channel.
*/
public void setChannelId(String channelId) {
this.channelId = channelId;
}
/**
* The ID of the Microsoft Teams channel.
*
* @return The ID of the Microsoft Teams channel.
*/
public String getChannelId() {
return this.channelId;
}
/**
* The ID of the Microsoft Teams channel.
*
* @param channelId
* The ID of the Microsoft Teams channel.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withChannelId(String channelId) {
setChannelId(channelId);
return this;
}
/**
* The name of the Microsoft Teams channel.
*
* @param channelName
* The name of the Microsoft Teams channel.
*/
public void setChannelName(String channelName) {
this.channelName = channelName;
}
/**
* The name of the Microsoft Teams channel.
*
* @return The name of the Microsoft Teams channel.
*/
public String getChannelName() {
return this.channelName;
}
/**
* The name of the Microsoft Teams channel.
*
* @param channelName
* The name of the Microsoft Teams channel.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withChannelName(String channelName) {
setChannelName(channelName);
return this;
}
/**
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from
* the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator
* Guide.
*
* @param teamId
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team
* ID from the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS
* Chatbot Administrator Guide.
*/
public void setTeamId(String teamId) {
this.teamId = teamId;
}
/**
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from
* the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator
* Guide.
*
* @return The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the
* initial authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste
* the team ID from the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the
* AWS Chatbot Administrator Guide.
*/
public String getTeamId() {
return this.teamId;
}
/**
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team ID from
* the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS Chatbot Administrator
* Guide.
*
* @param teamId
* The ID of the Microsoft Team authorized with AWS Chatbot. To get the team ID, you must perform the initial
* authorization flow with Microsoft Teams in the AWS Chatbot console. Then you can copy and paste the team
* ID from the console. For more details, see steps 1-4 in Get started with Microsoft Teams in the AWS
* Chatbot Administrator Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withTeamId(String teamId) {
setTeamId(teamId);
return this;
}
/**
* The name of the Microsoft Teams Team.
*
* @param teamName
* The name of the Microsoft Teams Team.
*/
public void setTeamName(String teamName) {
this.teamName = teamName;
}
/**
* The name of the Microsoft Teams Team.
*
* @return The name of the Microsoft Teams Team.
*/
public String getTeamName() {
return this.teamName;
}
/**
* The name of the Microsoft Teams Team.
*
* @param teamName
* The name of the Microsoft Teams Team.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withTeamName(String teamName) {
setTeamName(teamName);
return this;
}
/**
* The ID of the Microsoft Teams tenant.
*
* @param tenantId
* The ID of the Microsoft Teams tenant.
*/
public void setTenantId(String tenantId) {
this.tenantId = tenantId;
}
/**
* The ID of the Microsoft Teams tenant.
*
* @return The ID of the Microsoft Teams tenant.
*/
public String getTenantId() {
return this.tenantId;
}
/**
* The ID of the Microsoft Teams tenant.
*
* @param tenantId
* The ID of the Microsoft Teams tenant.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withTenantId(String tenantId) {
setTenantId(tenantId);
return this;
}
/**
* The ARN of the MicrosoftTeamsChannelConfiguration.
*
* @param chatConfigurationArn
* The ARN of the MicrosoftTeamsChannelConfiguration.
*/
public void setChatConfigurationArn(String chatConfigurationArn) {
this.chatConfigurationArn = chatConfigurationArn;
}
/**
* The ARN of the MicrosoftTeamsChannelConfiguration.
*
* @return The ARN of the MicrosoftTeamsChannelConfiguration.
*/
public String getChatConfigurationArn() {
return this.chatConfigurationArn;
}
/**
* The ARN of the MicrosoftTeamsChannelConfiguration.
*
* @param chatConfigurationArn
* The ARN of the MicrosoftTeamsChannelConfiguration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withChatConfigurationArn(String chatConfigurationArn) {
setChatConfigurationArn(chatConfigurationArn);
return this;
}
/**
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
*
* @param iamRoleArn
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS
* Chatbot.
*/
public void setIamRoleArn(String iamRoleArn) {
this.iamRoleArn = iamRoleArn;
}
/**
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
*
* @return The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that
* AWS Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for
* AWS Chatbot.
*/
public String getIamRoleArn() {
return this.iamRoleArn;
}
/**
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS Chatbot.
*
* @param iamRoleArn
* The ARN of the IAM role that defines the permissions for AWS Chatbot. This is a user-defined role that AWS
* Chatbot will assume. This is not the service-linked role. For more information, see IAM Policies for AWS
* Chatbot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withIamRoleArn(String iamRoleArn) {
setIamRoleArn(iamRoleArn);
return this;
}
/**
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*
* @return The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*/
public java.util.List getSnsTopicArns() {
return snsTopicArns;
}
/**
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*
* @param snsTopicArns
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*/
public void setSnsTopicArns(java.util.Collection snsTopicArns) {
if (snsTopicArns == null) {
this.snsTopicArns = null;
return;
}
this.snsTopicArns = new java.util.ArrayList(snsTopicArns);
}
/**
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSnsTopicArns(java.util.Collection)} or {@link #withSnsTopicArns(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param snsTopicArns
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withSnsTopicArns(String... snsTopicArns) {
if (this.snsTopicArns == null) {
setSnsTopicArns(new java.util.ArrayList(snsTopicArns.length));
}
for (String ele : snsTopicArns) {
this.snsTopicArns.add(ele);
}
return this;
}
/**
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
*
* @param snsTopicArns
* The ARNs of the SNS topics that deliver notifications to AWS Chatbot.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withSnsTopicArns(java.util.Collection snsTopicArns) {
setSnsTopicArns(snsTopicArns);
return this;
}
/**
* The name of the configuration.
*
* @param configurationName
* The name of the configuration.
*/
public void setConfigurationName(String configurationName) {
this.configurationName = configurationName;
}
/**
* The name of the configuration.
*
* @return The name of the configuration.
*/
public String getConfigurationName() {
return this.configurationName;
}
/**
* The name of the configuration.
*
* @param configurationName
* The name of the configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withConfigurationName(String configurationName) {
setConfigurationName(configurationName);
return this;
}
/**
* Logging levels include ERROR, INFO, or NONE.
*
* @param loggingLevel
* Logging levels include ERROR, INFO, or NONE.
*/
public void setLoggingLevel(String loggingLevel) {
this.loggingLevel = loggingLevel;
}
/**
* Logging levels include ERROR, INFO, or NONE.
*
* @return Logging levels include ERROR, INFO, or NONE.
*/
public String getLoggingLevel() {
return this.loggingLevel;
}
/**
* Logging levels include ERROR, INFO, or NONE.
*
* @param loggingLevel
* Logging levels include ERROR, INFO, or NONE.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withLoggingLevel(String loggingLevel) {
setLoggingLevel(loggingLevel);
return this;
}
/**
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy
* is applied by default if this is not set.
*
* @return The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess'
* policy is applied by default if this is not set.
*/
public java.util.List getGuardrailPolicyArns() {
return guardrailPolicyArns;
}
/**
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy
* is applied by default if this is not set.
*
* @param guardrailPolicyArns
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess'
* policy is applied by default if this is not set.
*/
public void setGuardrailPolicyArns(java.util.Collection guardrailPolicyArns) {
if (guardrailPolicyArns == null) {
this.guardrailPolicyArns = null;
return;
}
this.guardrailPolicyArns = new java.util.ArrayList(guardrailPolicyArns);
}
/**
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy
* is applied by default if this is not set.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setGuardrailPolicyArns(java.util.Collection)} or {@link #withGuardrailPolicyArns(java.util.Collection)}
* if you want to override the existing values.
*
*
* @param guardrailPolicyArns
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess'
* policy is applied by default if this is not set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withGuardrailPolicyArns(String... guardrailPolicyArns) {
if (this.guardrailPolicyArns == null) {
setGuardrailPolicyArns(new java.util.ArrayList(guardrailPolicyArns.length));
}
for (String ele : guardrailPolicyArns) {
this.guardrailPolicyArns.add(ele);
}
return this;
}
/**
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess' policy
* is applied by default if this is not set.
*
* @param guardrailPolicyArns
* The list of IAM policy ARNs that are applied as channel guardrails. The AWS managed 'AdministratorAccess'
* policy is applied by default if this is not set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withGuardrailPolicyArns(java.util.Collection guardrailPolicyArns) {
setGuardrailPolicyArns(guardrailPolicyArns);
return this;
}
/**
* Enables use of a user role requirement in your chat configuration.
*
* @param userAuthorizationRequired
* Enables use of a user role requirement in your chat configuration.
*/
public void setUserAuthorizationRequired(Boolean userAuthorizationRequired) {
this.userAuthorizationRequired = userAuthorizationRequired;
}
/**
* Enables use of a user role requirement in your chat configuration.
*
* @return Enables use of a user role requirement in your chat configuration.
*/
public Boolean getUserAuthorizationRequired() {
return this.userAuthorizationRequired;
}
/**
* Enables use of a user role requirement in your chat configuration.
*
* @param userAuthorizationRequired
* Enables use of a user role requirement in your chat configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withUserAuthorizationRequired(Boolean userAuthorizationRequired) {
setUserAuthorizationRequired(userAuthorizationRequired);
return this;
}
/**
* Enables use of a user role requirement in your chat configuration.
*
* @return Enables use of a user role requirement in your chat configuration.
*/
public Boolean isUserAuthorizationRequired() {
return this.userAuthorizationRequired;
}
/**
* A list of tags applied to the configuration.
*
* @return A list of tags applied to the configuration.
*/
public java.util.List getTags() {
return tags;
}
/**
* A list of tags applied to the configuration.
*
* @param tags
* A list of tags applied to the configuration.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
* A list of tags applied to the configuration.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* A list of tags applied to the configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
* A list of tags applied to the configuration.
*
* @param tags
* A list of tags applied to the configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TeamsChannelConfiguration withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getChannelId() != null)
sb.append("ChannelId: ").append(getChannelId()).append(",");
if (getChannelName() != null)
sb.append("ChannelName: ").append(getChannelName()).append(",");
if (getTeamId() != null)
sb.append("TeamId: ").append(getTeamId()).append(",");
if (getTeamName() != null)
sb.append("TeamName: ").append(getTeamName()).append(",");
if (getTenantId() != null)
sb.append("TenantId: ").append(getTenantId()).append(",");
if (getChatConfigurationArn() != null)
sb.append("ChatConfigurationArn: ").append(getChatConfigurationArn()).append(",");
if (getIamRoleArn() != null)
sb.append("IamRoleArn: ").append(getIamRoleArn()).append(",");
if (getSnsTopicArns() != null)
sb.append("SnsTopicArns: ").append(getSnsTopicArns()).append(",");
if (getConfigurationName() != null)
sb.append("ConfigurationName: ").append(getConfigurationName()).append(",");
if (getLoggingLevel() != null)
sb.append("LoggingLevel: ").append(getLoggingLevel()).append(",");
if (getGuardrailPolicyArns() != null)
sb.append("GuardrailPolicyArns: ").append(getGuardrailPolicyArns()).append(",");
if (getUserAuthorizationRequired() != null)
sb.append("UserAuthorizationRequired: ").append(getUserAuthorizationRequired()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof TeamsChannelConfiguration == false)
return false;
TeamsChannelConfiguration other = (TeamsChannelConfiguration) obj;
if (other.getChannelId() == null ^ this.getChannelId() == null)
return false;
if (other.getChannelId() != null && other.getChannelId().equals(this.getChannelId()) == false)
return false;
if (other.getChannelName() == null ^ this.getChannelName() == null)
return false;
if (other.getChannelName() != null && other.getChannelName().equals(this.getChannelName()) == false)
return false;
if (other.getTeamId() == null ^ this.getTeamId() == null)
return false;
if (other.getTeamId() != null && other.getTeamId().equals(this.getTeamId()) == false)
return false;
if (other.getTeamName() == null ^ this.getTeamName() == null)
return false;
if (other.getTeamName() != null && other.getTeamName().equals(this.getTeamName()) == false)
return false;
if (other.getTenantId() == null ^ this.getTenantId() == null)
return false;
if (other.getTenantId() != null && other.getTenantId().equals(this.getTenantId()) == false)
return false;
if (other.getChatConfigurationArn() == null ^ this.getChatConfigurationArn() == null)
return false;
if (other.getChatConfigurationArn() != null && other.getChatConfigurationArn().equals(this.getChatConfigurationArn()) == false)
return false;
if (other.getIamRoleArn() == null ^ this.getIamRoleArn() == null)
return false;
if (other.getIamRoleArn() != null && other.getIamRoleArn().equals(this.getIamRoleArn()) == false)
return false;
if (other.getSnsTopicArns() == null ^ this.getSnsTopicArns() == null)
return false;
if (other.getSnsTopicArns() != null && other.getSnsTopicArns().equals(this.getSnsTopicArns()) == false)
return false;
if (other.getConfigurationName() == null ^ this.getConfigurationName() == null)
return false;
if (other.getConfigurationName() != null && other.getConfigurationName().equals(this.getConfigurationName()) == false)
return false;
if (other.getLoggingLevel() == null ^ this.getLoggingLevel() == null)
return false;
if (other.getLoggingLevel() != null && other.getLoggingLevel().equals(this.getLoggingLevel()) == false)
return false;
if (other.getGuardrailPolicyArns() == null ^ this.getGuardrailPolicyArns() == null)
return false;
if (other.getGuardrailPolicyArns() != null && other.getGuardrailPolicyArns().equals(this.getGuardrailPolicyArns()) == false)
return false;
if (other.getUserAuthorizationRequired() == null ^ this.getUserAuthorizationRequired() == null)
return false;
if (other.getUserAuthorizationRequired() != null && other.getUserAuthorizationRequired().equals(this.getUserAuthorizationRequired()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getChannelId() == null) ? 0 : getChannelId().hashCode());
hashCode = prime * hashCode + ((getChannelName() == null) ? 0 : getChannelName().hashCode());
hashCode = prime * hashCode + ((getTeamId() == null) ? 0 : getTeamId().hashCode());
hashCode = prime * hashCode + ((getTeamName() == null) ? 0 : getTeamName().hashCode());
hashCode = prime * hashCode + ((getTenantId() == null) ? 0 : getTenantId().hashCode());
hashCode = prime * hashCode + ((getChatConfigurationArn() == null) ? 0 : getChatConfigurationArn().hashCode());
hashCode = prime * hashCode + ((getIamRoleArn() == null) ? 0 : getIamRoleArn().hashCode());
hashCode = prime * hashCode + ((getSnsTopicArns() == null) ? 0 : getSnsTopicArns().hashCode());
hashCode = prime * hashCode + ((getConfigurationName() == null) ? 0 : getConfigurationName().hashCode());
hashCode = prime * hashCode + ((getLoggingLevel() == null) ? 0 : getLoggingLevel().hashCode());
hashCode = prime * hashCode + ((getGuardrailPolicyArns() == null) ? 0 : getGuardrailPolicyArns().hashCode());
hashCode = prime * hashCode + ((getUserAuthorizationRequired() == null) ? 0 : getUserAuthorizationRequired().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public TeamsChannelConfiguration clone() {
try {
return (TeamsChannelConfiguration) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.chatbot.model.transform.TeamsChannelConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}