All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.cloudtrail.model.Event Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CloudTrail module holds the client classes that are used for communicating with AWS CloudTrail Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.cloudtrail.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains information about an event that was returned by a lookup request. The result includes a representation of a * CloudTrail event. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Event implements Serializable, Cloneable, StructuredPojo { /** *

* The CloudTrail ID of the event returned. *

*/ private String eventId; /** *

* The name of the event returned. *

*/ private String eventName; /** *

* Information about whether the event is a write event or a read event. *

*/ private String readOnly; /** *

* The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. *

*/ private String accessKeyId; /** *

* The date and time of the event returned. *

*/ private java.util.Date eventTime; /** *

* The AWS service that the request was made to. *

*/ private String eventSource; /** *

* A user name or role name of the requester that called the API in the event returned. *

*/ private String username; /** *

* A list of resources referenced by the event returned. *

*/ private com.amazonaws.internal.SdkInternalList resources; /** *

* A JSON string that contains a representation of the event returned. *

*/ private String cloudTrailEvent; /** *

* The CloudTrail ID of the event returned. *

* * @param eventId * The CloudTrail ID of the event returned. */ public void setEventId(String eventId) { this.eventId = eventId; } /** *

* The CloudTrail ID of the event returned. *

* * @return The CloudTrail ID of the event returned. */ public String getEventId() { return this.eventId; } /** *

* The CloudTrail ID of the event returned. *

* * @param eventId * The CloudTrail ID of the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withEventId(String eventId) { setEventId(eventId); return this; } /** *

* The name of the event returned. *

* * @param eventName * The name of the event returned. */ public void setEventName(String eventName) { this.eventName = eventName; } /** *

* The name of the event returned. *

* * @return The name of the event returned. */ public String getEventName() { return this.eventName; } /** *

* The name of the event returned. *

* * @param eventName * The name of the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withEventName(String eventName) { setEventName(eventName); return this; } /** *

* Information about whether the event is a write event or a read event. *

* * @param readOnly * Information about whether the event is a write event or a read event. */ public void setReadOnly(String readOnly) { this.readOnly = readOnly; } /** *

* Information about whether the event is a write event or a read event. *

* * @return Information about whether the event is a write event or a read event. */ public String getReadOnly() { return this.readOnly; } /** *

* Information about whether the event is a write event or a read event. *

* * @param readOnly * Information about whether the event is a write event or a read event. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withReadOnly(String readOnly) { setReadOnly(readOnly); return this; } /** *

* The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. *

* * @param accessKeyId * The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. */ public void setAccessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; } /** *

* The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. *

* * @return The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. */ public String getAccessKeyId() { return this.accessKeyId; } /** *

* The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. *

* * @param accessKeyId * The AWS access key ID that was used to sign the request. If the request was made with temporary security * credentials, this is the access key ID of the temporary credentials. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withAccessKeyId(String accessKeyId) { setAccessKeyId(accessKeyId); return this; } /** *

* The date and time of the event returned. *

* * @param eventTime * The date and time of the event returned. */ public void setEventTime(java.util.Date eventTime) { this.eventTime = eventTime; } /** *

* The date and time of the event returned. *

* * @return The date and time of the event returned. */ public java.util.Date getEventTime() { return this.eventTime; } /** *

* The date and time of the event returned. *

* * @param eventTime * The date and time of the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withEventTime(java.util.Date eventTime) { setEventTime(eventTime); return this; } /** *

* The AWS service that the request was made to. *

* * @param eventSource * The AWS service that the request was made to. */ public void setEventSource(String eventSource) { this.eventSource = eventSource; } /** *

* The AWS service that the request was made to. *

* * @return The AWS service that the request was made to. */ public String getEventSource() { return this.eventSource; } /** *

* The AWS service that the request was made to. *

* * @param eventSource * The AWS service that the request was made to. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withEventSource(String eventSource) { setEventSource(eventSource); return this; } /** *

* A user name or role name of the requester that called the API in the event returned. *

* * @param username * A user name or role name of the requester that called the API in the event returned. */ public void setUsername(String username) { this.username = username; } /** *

* A user name or role name of the requester that called the API in the event returned. *

* * @return A user name or role name of the requester that called the API in the event returned. */ public String getUsername() { return this.username; } /** *

* A user name or role name of the requester that called the API in the event returned. *

* * @param username * A user name or role name of the requester that called the API in the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withUsername(String username) { setUsername(username); return this; } /** *

* A list of resources referenced by the event returned. *

* * @return A list of resources referenced by the event returned. */ public java.util.List getResources() { if (resources == null) { resources = new com.amazonaws.internal.SdkInternalList(); } return resources; } /** *

* A list of resources referenced by the event returned. *

* * @param resources * A list of resources referenced by the event returned. */ public void setResources(java.util.Collection resources) { if (resources == null) { this.resources = null; return; } this.resources = new com.amazonaws.internal.SdkInternalList(resources); } /** *

* A list of resources referenced by the event returned. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setResources(java.util.Collection)} or {@link #withResources(java.util.Collection)} if you want to * override the existing values. *

* * @param resources * A list of resources referenced by the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withResources(Resource... resources) { if (this.resources == null) { setResources(new com.amazonaws.internal.SdkInternalList(resources.length)); } for (Resource ele : resources) { this.resources.add(ele); } return this; } /** *

* A list of resources referenced by the event returned. *

* * @param resources * A list of resources referenced by the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withResources(java.util.Collection resources) { setResources(resources); return this; } /** *

* A JSON string that contains a representation of the event returned. *

* * @param cloudTrailEvent * A JSON string that contains a representation of the event returned. */ public void setCloudTrailEvent(String cloudTrailEvent) { this.cloudTrailEvent = cloudTrailEvent; } /** *

* A JSON string that contains a representation of the event returned. *

* * @return A JSON string that contains a representation of the event returned. */ public String getCloudTrailEvent() { return this.cloudTrailEvent; } /** *

* A JSON string that contains a representation of the event returned. *

* * @param cloudTrailEvent * A JSON string that contains a representation of the event returned. * @return Returns a reference to this object so that method calls can be chained together. */ public Event withCloudTrailEvent(String cloudTrailEvent) { setCloudTrailEvent(cloudTrailEvent); 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 (getEventId() != null) sb.append("EventId: ").append(getEventId()).append(","); if (getEventName() != null) sb.append("EventName: ").append(getEventName()).append(","); if (getReadOnly() != null) sb.append("ReadOnly: ").append(getReadOnly()).append(","); if (getAccessKeyId() != null) sb.append("AccessKeyId: ").append(getAccessKeyId()).append(","); if (getEventTime() != null) sb.append("EventTime: ").append(getEventTime()).append(","); if (getEventSource() != null) sb.append("EventSource: ").append(getEventSource()).append(","); if (getUsername() != null) sb.append("Username: ").append(getUsername()).append(","); if (getResources() != null) sb.append("Resources: ").append(getResources()).append(","); if (getCloudTrailEvent() != null) sb.append("CloudTrailEvent: ").append(getCloudTrailEvent()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Event == false) return false; Event other = (Event) obj; if (other.getEventId() == null ^ this.getEventId() == null) return false; if (other.getEventId() != null && other.getEventId().equals(this.getEventId()) == false) return false; if (other.getEventName() == null ^ this.getEventName() == null) return false; if (other.getEventName() != null && other.getEventName().equals(this.getEventName()) == false) return false; if (other.getReadOnly() == null ^ this.getReadOnly() == null) return false; if (other.getReadOnly() != null && other.getReadOnly().equals(this.getReadOnly()) == false) return false; if (other.getAccessKeyId() == null ^ this.getAccessKeyId() == null) return false; if (other.getAccessKeyId() != null && other.getAccessKeyId().equals(this.getAccessKeyId()) == false) return false; if (other.getEventTime() == null ^ this.getEventTime() == null) return false; if (other.getEventTime() != null && other.getEventTime().equals(this.getEventTime()) == false) return false; if (other.getEventSource() == null ^ this.getEventSource() == null) return false; if (other.getEventSource() != null && other.getEventSource().equals(this.getEventSource()) == false) return false; if (other.getUsername() == null ^ this.getUsername() == null) return false; if (other.getUsername() != null && other.getUsername().equals(this.getUsername()) == false) return false; if (other.getResources() == null ^ this.getResources() == null) return false; if (other.getResources() != null && other.getResources().equals(this.getResources()) == false) return false; if (other.getCloudTrailEvent() == null ^ this.getCloudTrailEvent() == null) return false; if (other.getCloudTrailEvent() != null && other.getCloudTrailEvent().equals(this.getCloudTrailEvent()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEventId() == null) ? 0 : getEventId().hashCode()); hashCode = prime * hashCode + ((getEventName() == null) ? 0 : getEventName().hashCode()); hashCode = prime * hashCode + ((getReadOnly() == null) ? 0 : getReadOnly().hashCode()); hashCode = prime * hashCode + ((getAccessKeyId() == null) ? 0 : getAccessKeyId().hashCode()); hashCode = prime * hashCode + ((getEventTime() == null) ? 0 : getEventTime().hashCode()); hashCode = prime * hashCode + ((getEventSource() == null) ? 0 : getEventSource().hashCode()); hashCode = prime * hashCode + ((getUsername() == null) ? 0 : getUsername().hashCode()); hashCode = prime * hashCode + ((getResources() == null) ? 0 : getResources().hashCode()); hashCode = prime * hashCode + ((getCloudTrailEvent() == null) ? 0 : getCloudTrailEvent().hashCode()); return hashCode; } @Override public Event clone() { try { return (Event) 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.cloudtrail.model.transform.EventMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy