com.amazonaws.services.cloudtrail.model.EventSelector Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cloudtrail Show documentation
/*
* Copyright 2013-2018 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;
/**
*
* Use event selectors to specify whether you want your trail to log management and/or data events. When an event occurs
* in your account, CloudTrail evaluates the event selector for all trails. For each trail, if the event matches any
* event selector, the trail processes and logs the event. If the event doesn't match any event selector, the trail
* doesn't log the event.
*
*
* You can configure up to five event selectors for a trail.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class EventSelector implements Serializable, Cloneable, StructuredPojo {
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*/
private String readWriteType;
/**
*
* Specify if you want your event selector to include management events for your trail.
*
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*
*/
private Boolean includeManagementEvents;
/**
*
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and object
* prefixes for a trail.
*
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*
*/
private com.amazonaws.internal.SdkInternalList dataResources;
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*
* @param readWriteType
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only
* API operation.
*
* By default, the value is All
.
* @see ReadWriteType
*/
public void setReadWriteType(String readWriteType) {
this.readWriteType = readWriteType;
}
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*
* @return Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only
* API operation.
*
* By default, the value is All
.
* @see ReadWriteType
*/
public String getReadWriteType() {
return this.readWriteType;
}
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*
* @param readWriteType
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only
* API operation.
*
* By default, the value is All
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ReadWriteType
*/
public EventSelector withReadWriteType(String readWriteType) {
setReadWriteType(readWriteType);
return this;
}
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*
* @param readWriteType
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only
* API operation.
*
* By default, the value is All
.
* @see ReadWriteType
*/
public void setReadWriteType(ReadWriteType readWriteType) {
withReadWriteType(readWriteType);
}
/**
*
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only API
* operation.
*
*
* By default, the value is All
.
*
*
* @param readWriteType
* Specify if you want your trail to log read-only events, write-only events, or all. For example, the EC2
* GetConsoleOutput
is a read-only API operation and RunInstances
is a write-only
* API operation.
*
* By default, the value is All
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ReadWriteType
*/
public EventSelector withReadWriteType(ReadWriteType readWriteType) {
this.readWriteType = readWriteType.toString();
return this;
}
/**
*
* Specify if you want your event selector to include management events for your trail.
*
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*
*
* @param includeManagementEvents
* Specify if you want your event selector to include management events for your trail.
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*/
public void setIncludeManagementEvents(Boolean includeManagementEvents) {
this.includeManagementEvents = includeManagementEvents;
}
/**
*
* Specify if you want your event selector to include management events for your trail.
*
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*
*
* @return Specify if you want your event selector to include management events for your trail.
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*/
public Boolean getIncludeManagementEvents() {
return this.includeManagementEvents;
}
/**
*
* Specify if you want your event selector to include management events for your trail.
*
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*
*
* @param includeManagementEvents
* Specify if you want your event selector to include management events for your trail.
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EventSelector withIncludeManagementEvents(Boolean includeManagementEvents) {
setIncludeManagementEvents(includeManagementEvents);
return this;
}
/**
*
* Specify if you want your event selector to include management events for your trail.
*
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*
*
* @return Specify if you want your event selector to include management events for your trail.
*
* For more information, see Management Events in the AWS CloudTrail User Guide.
*
*
* By default, the value is true
.
*/
public Boolean isIncludeManagementEvents() {
return this.includeManagementEvents;
}
/**
*
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and object
* prefixes for a trail.
*
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*
*
* @return CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and
* object prefixes for a trail.
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*/
public java.util.List getDataResources() {
if (dataResources == null) {
dataResources = new com.amazonaws.internal.SdkInternalList();
}
return dataResources;
}
/**
*
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and object
* prefixes for a trail.
*
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*
*
* @param dataResources
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and
* object prefixes for a trail.
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*/
public void setDataResources(java.util.Collection dataResources) {
if (dataResources == null) {
this.dataResources = null;
return;
}
this.dataResources = new com.amazonaws.internal.SdkInternalList(dataResources);
}
/**
*
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and object
* prefixes for a trail.
*
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDataResources(java.util.Collection)} or {@link #withDataResources(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param dataResources
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and
* object prefixes for a trail.
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EventSelector withDataResources(DataResource... dataResources) {
if (this.dataResources == null) {
setDataResources(new com.amazonaws.internal.SdkInternalList(dataResources.length));
}
for (DataResource ele : dataResources) {
this.dataResources.add(ele);
}
return this;
}
/**
*
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and object
* prefixes for a trail.
*
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
*
*
* @param dataResources
* CloudTrail supports logging only data events for S3 objects. You can specify up to 250 S3 buckets and
* object prefixes for a trail.
*
* For more information, see Data Events in the AWS CloudTrail User Guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EventSelector withDataResources(java.util.Collection dataResources) {
setDataResources(dataResources);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getReadWriteType() != null)
sb.append("ReadWriteType: ").append(getReadWriteType()).append(",");
if (getIncludeManagementEvents() != null)
sb.append("IncludeManagementEvents: ").append(getIncludeManagementEvents()).append(",");
if (getDataResources() != null)
sb.append("DataResources: ").append(getDataResources());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof EventSelector == false)
return false;
EventSelector other = (EventSelector) obj;
if (other.getReadWriteType() == null ^ this.getReadWriteType() == null)
return false;
if (other.getReadWriteType() != null && other.getReadWriteType().equals(this.getReadWriteType()) == false)
return false;
if (other.getIncludeManagementEvents() == null ^ this.getIncludeManagementEvents() == null)
return false;
if (other.getIncludeManagementEvents() != null && other.getIncludeManagementEvents().equals(this.getIncludeManagementEvents()) == false)
return false;
if (other.getDataResources() == null ^ this.getDataResources() == null)
return false;
if (other.getDataResources() != null && other.getDataResources().equals(this.getDataResources()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getReadWriteType() == null) ? 0 : getReadWriteType().hashCode());
hashCode = prime * hashCode + ((getIncludeManagementEvents() == null) ? 0 : getIncludeManagementEvents().hashCode());
hashCode = prime * hashCode + ((getDataResources() == null) ? 0 : getDataResources().hashCode());
return hashCode;
}
@Override
public EventSelector clone() {
try {
return (EventSelector) 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.EventSelectorMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}