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 SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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;

/**
 * 

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

*/ public class Resource implements Serializable, Cloneable { /** *

* 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 RDS, and AccessKey for IAM. For a list of * resource types supported for event lookup, see Resource Types Supported for Event Lookup. *

*/ 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 RDS, and AccessKey for IAM. For a list of * resource types supported for event lookup, see Resource Types Supported for Event Lookup. *

* * @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 RDS, and * AccessKey for IAM. For a list of resource types supported * for event lookup, see Resource Types Supported for Event Lookup. */ 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 RDS, and AccessKey for IAM. For a list of * resource types supported for event lookup, see Resource Types Supported for Event Lookup. *

* * @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 RDS, and * AccessKey for IAM. For a list of resource types supported * for event lookup, see Resource Types Supported for Event Lookup. */ 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 RDS, and AccessKey for IAM. For a list of * resource types supported for event lookup, see Resource Types Supported for Event Lookup. *

* * @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 RDS, and * AccessKey for IAM. For a list of resource types supported * for event lookup, see Resource Types Supported for Event Lookup. * @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; 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 (getResourceType() != null) sb.append("ResourceType: " + getResourceType() + ","); if (getResourceName() != null) sb.append("ResourceName: " + 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); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy