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

com.amazonaws.services.cloudtrail.model.Resource 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

The newest version!
/*
 * 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.cloudtrail.model;

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

/**
 * 

* Specifies the type and name of a resource referenced by an event. *

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

* The type of a resource referenced by the event returned. When the resource type cannot be determined, null is * returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and filter * events by the resource types supported for a service, see Filtering CloudTrail Events. *

*/ private String resourceType; /** *

* The name of the resource referenced by the event returned. These are user-created names whose values will depend * on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto Scaling Group * or "i-1234567" for an EC2 Instance. *

*/ private String resourceName; /** *

* The type of a resource referenced by the event returned. When the resource type cannot be determined, null is * returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and filter * events by the resource types supported for a service, see Filtering CloudTrail Events. *

* * @param resourceType * The type of a resource referenced by the event returned. When the resource type cannot be determined, null * is returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and * filter events by the resource types supported for a service, see Filtering CloudTrail Events. */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** *

* The type of a resource referenced by the event returned. When the resource type cannot be determined, null is * returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and filter * events by the resource types supported for a service, see Filtering CloudTrail Events. *

* * @return The type of a resource referenced by the event returned. When the resource type cannot be determined, * null is returned. Some examples of resource types are: Instance for EC2, Trail for * CloudTrail, DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to * look up and filter events by the resource types supported for a service, see Filtering CloudTrail Events. */ public String getResourceType() { return this.resourceType; } /** *

* The type of a resource referenced by the event returned. When the resource type cannot be determined, null is * returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and filter * events by the resource types supported for a service, see Filtering CloudTrail Events. *

* * @param resourceType * The type of a resource referenced by the event returned. When the resource type cannot be determined, null * is returned. Some examples of resource types are: Instance for EC2, Trail for CloudTrail, * DBInstance for Amazon RDS, and AccessKey for IAM. To learn more about how to look up and * filter events by the resource types supported for a service, see Filtering CloudTrail Events. * @return Returns a reference to this object so that method calls can be chained together. */ public Resource withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** *

* The name of the resource referenced by the event returned. These are user-created names whose values will depend * on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto Scaling Group * or "i-1234567" for an EC2 Instance. *

* * @param resourceName * The name of the resource referenced by the event returned. These are user-created names whose values will * depend on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto * Scaling Group or "i-1234567" for an EC2 Instance. */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** *

* The name of the resource referenced by the event returned. These are user-created names whose values will depend * on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto Scaling Group * or "i-1234567" for an EC2 Instance. *

* * @return The name of the resource referenced by the event returned. These are user-created names whose values will * depend on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto * Scaling Group or "i-1234567" for an EC2 Instance. */ public String getResourceName() { return this.resourceName; } /** *

* The name of the resource referenced by the event returned. These are user-created names whose values will depend * on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto Scaling Group * or "i-1234567" for an EC2 Instance. *

* * @param resourceName * The name of the resource referenced by the event returned. These are user-created names whose values will * depend on the environment. For example, the resource name might be "auto-scaling-test-group" for an Auto * Scaling Group or "i-1234567" for an EC2 Instance. * @return Returns a reference to this object so that method calls can be chained together. */ public Resource withResourceName(String resourceName) { setResourceName(resourceName); 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 (getResourceType() != null) sb.append("ResourceType: ").append(getResourceType()).append(","); if (getResourceName() != null) sb.append("ResourceName: ").append(getResourceName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Resource == false) return false; Resource other = (Resource) obj; if (other.getResourceType() == null ^ this.getResourceType() == null) return false; if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false) return false; if (other.getResourceName() == null ^ this.getResourceName() == null) return false; if (other.getResourceName() != null && other.getResourceName().equals(this.getResourceName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode()); hashCode = prime * hashCode + ((getResourceName() == null) ? 0 : getResourceName().hashCode()); return hashCode; } @Override public Resource clone() { try { return (Resource) 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.ResourceMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy