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

com.amazonaws.services.pinpoint.model.ExportJobResource Maven / Gradle / Ivy

/*
 * Copyright 2010-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.pinpoint.model;

import java.io.Serializable;

public class ExportJobResource implements Serializable {
    /**
     * The Amazon Resource Name (ARN) of an IAM role that grants Amazon Pinpoint
     * access to the Amazon S3 location that endpoints will be exported to.
     */
    private String roleArn;

    /**
     * A URL that points to the location within an Amazon S3 bucket that will
     * receive the export. The location is typically a folder with multiple
     * files. The URL should follow this format: s3://bucket-name/folder-name/
     * Amazon Pinpoint will export endpoints to this location.
     */
    private String s3UrlPrefix;

    /**
     * The ID of the segment to export endpoints from. If not present, all
     * endpoints are exported.
     */
    private String segmentId;

    /**
     * The Amazon Resource Name (ARN) of an IAM role that grants Amazon Pinpoint
     * access to the Amazon S3 location that endpoints will be exported to.
     *
     * @return The Amazon Resource Name (ARN) of an IAM role that grants Amazon
     *         Pinpoint access to the Amazon S3 location that endpoints will be
     *         exported to.
     */
    public String getRoleArn() {
        return roleArn;
    }

    /**
     * The Amazon Resource Name (ARN) of an IAM role that grants Amazon Pinpoint
     * access to the Amazon S3 location that endpoints will be exported to.
     *
     * @param roleArn The Amazon Resource Name (ARN) of an IAM role that grants
     *            Amazon Pinpoint access to the Amazon S3 location that
     *            endpoints will be exported to.
     */
    public void setRoleArn(String roleArn) {
        this.roleArn = roleArn;
    }

    /**
     * The Amazon Resource Name (ARN) of an IAM role that grants Amazon Pinpoint
     * access to the Amazon S3 location that endpoints will be exported to.
     * 

* Returns a reference to this object so that method calls can be chained * together. * * @param roleArn The Amazon Resource Name (ARN) of an IAM role that grants * Amazon Pinpoint access to the Amazon S3 location that * endpoints will be exported to. * @return A reference to this updated object so that method calls can be * chained together. */ public ExportJobResource withRoleArn(String roleArn) { this.roleArn = roleArn; return this; } /** * A URL that points to the location within an Amazon S3 bucket that will * receive the export. The location is typically a folder with multiple * files. The URL should follow this format: s3://bucket-name/folder-name/ * Amazon Pinpoint will export endpoints to this location. * * @return A URL that points to the location within an Amazon S3 bucket that * will receive the export. The location is typically a folder with * multiple files. The URL should follow this format: * s3://bucket-name/folder-name/ Amazon Pinpoint will export * endpoints to this location. */ public String getS3UrlPrefix() { return s3UrlPrefix; } /** * A URL that points to the location within an Amazon S3 bucket that will * receive the export. The location is typically a folder with multiple * files. The URL should follow this format: s3://bucket-name/folder-name/ * Amazon Pinpoint will export endpoints to this location. * * @param s3UrlPrefix A URL that points to the location within an Amazon S3 * bucket that will receive the export. The location is typically * a folder with multiple files. The URL should follow this * format: s3://bucket-name/folder-name/ Amazon Pinpoint will * export endpoints to this location. */ public void setS3UrlPrefix(String s3UrlPrefix) { this.s3UrlPrefix = s3UrlPrefix; } /** * A URL that points to the location within an Amazon S3 bucket that will * receive the export. The location is typically a folder with multiple * files. The URL should follow this format: s3://bucket-name/folder-name/ * Amazon Pinpoint will export endpoints to this location. *

* Returns a reference to this object so that method calls can be chained * together. * * @param s3UrlPrefix A URL that points to the location within an Amazon S3 * bucket that will receive the export. The location is typically * a folder with multiple files. The URL should follow this * format: s3://bucket-name/folder-name/ Amazon Pinpoint will * export endpoints to this location. * @return A reference to this updated object so that method calls can be * chained together. */ public ExportJobResource withS3UrlPrefix(String s3UrlPrefix) { this.s3UrlPrefix = s3UrlPrefix; return this; } /** * The ID of the segment to export endpoints from. If not present, all * endpoints are exported. * * @return The ID of the segment to export endpoints from. If not present, * all endpoints are exported. */ public String getSegmentId() { return segmentId; } /** * The ID of the segment to export endpoints from. If not present, all * endpoints are exported. * * @param segmentId The ID of the segment to export endpoints from. If not * present, all endpoints are exported. */ public void setSegmentId(String segmentId) { this.segmentId = segmentId; } /** * The ID of the segment to export endpoints from. If not present, all * endpoints are exported. *

* Returns a reference to this object so that method calls can be chained * together. * * @param segmentId The ID of the segment to export endpoints from. If not * present, all endpoints are exported. * @return A reference to this updated object so that method calls can be * chained together. */ public ExportJobResource withSegmentId(String segmentId) { this.segmentId = segmentId; 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 (getRoleArn() != null) sb.append("RoleArn: " + getRoleArn() + ","); if (getS3UrlPrefix() != null) sb.append("S3UrlPrefix: " + getS3UrlPrefix() + ","); if (getSegmentId() != null) sb.append("SegmentId: " + getSegmentId()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode()); hashCode = prime * hashCode + ((getS3UrlPrefix() == null) ? 0 : getS3UrlPrefix().hashCode()); hashCode = prime * hashCode + ((getSegmentId() == null) ? 0 : getSegmentId().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ExportJobResource == false) return false; ExportJobResource other = (ExportJobResource) obj; if (other.getRoleArn() == null ^ this.getRoleArn() == null) return false; if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false) return false; if (other.getS3UrlPrefix() == null ^ this.getS3UrlPrefix() == null) return false; if (other.getS3UrlPrefix() != null && other.getS3UrlPrefix().equals(this.getS3UrlPrefix()) == false) return false; if (other.getSegmentId() == null ^ this.getSegmentId() == null) return false; if (other.getSegmentId() != null && other.getSegmentId().equals(this.getSegmentId()) == false) return false; return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy