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

com.amazonaws.services.backup.model.ReportSetting Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show 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.backup.model;

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

/**
 * 

* Contains detailed information about a report setting. *

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

* Identifies the report template for the report. Reports are built using a report template. The report templates * are: *

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT *

*/ private String reportTemplate; /** *

* The Amazon Resource Names (ARNs) of the frameworks a report covers. *

*/ private java.util.List frameworkArns; /** *

* The number of frameworks a report covers. *

*/ private Integer numberOfFrameworks; /** *

* These are the accounts to be included in the report. *

*/ private java.util.List accounts; /** *

* These are the Organizational Units to be included in the report. *

*/ private java.util.List organizationUnits; /** *

* These are the Regions to be included in the report. *

*/ private java.util.List regions; /** *

* Identifies the report template for the report. Reports are built using a report template. The report templates * are: *

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT *

* * @param reportTemplate * Identifies the report template for the report. Reports are built using a report template. The report * templates are:

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT */ public void setReportTemplate(String reportTemplate) { this.reportTemplate = reportTemplate; } /** *

* Identifies the report template for the report. Reports are built using a report template. The report templates * are: *

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT *

* * @return Identifies the report template for the report. Reports are built using a report template. The report * templates are:

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT */ public String getReportTemplate() { return this.reportTemplate; } /** *

* Identifies the report template for the report. Reports are built using a report template. The report templates * are: *

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT *

* * @param reportTemplate * Identifies the report template for the report. Reports are built using a report template. The report * templates are:

*

* RESOURCE_COMPLIANCE_REPORT | CONTROL_COMPLIANCE_REPORT | BACKUP_JOB_REPORT | COPY_JOB_REPORT | RESTORE_JOB_REPORT * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withReportTemplate(String reportTemplate) { setReportTemplate(reportTemplate); return this; } /** *

* The Amazon Resource Names (ARNs) of the frameworks a report covers. *

* * @return The Amazon Resource Names (ARNs) of the frameworks a report covers. */ public java.util.List getFrameworkArns() { return frameworkArns; } /** *

* The Amazon Resource Names (ARNs) of the frameworks a report covers. *

* * @param frameworkArns * The Amazon Resource Names (ARNs) of the frameworks a report covers. */ public void setFrameworkArns(java.util.Collection frameworkArns) { if (frameworkArns == null) { this.frameworkArns = null; return; } this.frameworkArns = new java.util.ArrayList(frameworkArns); } /** *

* The Amazon Resource Names (ARNs) of the frameworks a report covers. *

*

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

* * @param frameworkArns * The Amazon Resource Names (ARNs) of the frameworks a report covers. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withFrameworkArns(String... frameworkArns) { if (this.frameworkArns == null) { setFrameworkArns(new java.util.ArrayList(frameworkArns.length)); } for (String ele : frameworkArns) { this.frameworkArns.add(ele); } return this; } /** *

* The Amazon Resource Names (ARNs) of the frameworks a report covers. *

* * @param frameworkArns * The Amazon Resource Names (ARNs) of the frameworks a report covers. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withFrameworkArns(java.util.Collection frameworkArns) { setFrameworkArns(frameworkArns); return this; } /** *

* The number of frameworks a report covers. *

* * @param numberOfFrameworks * The number of frameworks a report covers. */ public void setNumberOfFrameworks(Integer numberOfFrameworks) { this.numberOfFrameworks = numberOfFrameworks; } /** *

* The number of frameworks a report covers. *

* * @return The number of frameworks a report covers. */ public Integer getNumberOfFrameworks() { return this.numberOfFrameworks; } /** *

* The number of frameworks a report covers. *

* * @param numberOfFrameworks * The number of frameworks a report covers. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withNumberOfFrameworks(Integer numberOfFrameworks) { setNumberOfFrameworks(numberOfFrameworks); return this; } /** *

* These are the accounts to be included in the report. *

* * @return These are the accounts to be included in the report. */ public java.util.List getAccounts() { return accounts; } /** *

* These are the accounts to be included in the report. *

* * @param accounts * These are the accounts to be included in the report. */ public void setAccounts(java.util.Collection accounts) { if (accounts == null) { this.accounts = null; return; } this.accounts = new java.util.ArrayList(accounts); } /** *

* These are the accounts to be included in the report. *

*

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

* * @param accounts * These are the accounts to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withAccounts(String... accounts) { if (this.accounts == null) { setAccounts(new java.util.ArrayList(accounts.length)); } for (String ele : accounts) { this.accounts.add(ele); } return this; } /** *

* These are the accounts to be included in the report. *

* * @param accounts * These are the accounts to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withAccounts(java.util.Collection accounts) { setAccounts(accounts); return this; } /** *

* These are the Organizational Units to be included in the report. *

* * @return These are the Organizational Units to be included in the report. */ public java.util.List getOrganizationUnits() { return organizationUnits; } /** *

* These are the Organizational Units to be included in the report. *

* * @param organizationUnits * These are the Organizational Units to be included in the report. */ public void setOrganizationUnits(java.util.Collection organizationUnits) { if (organizationUnits == null) { this.organizationUnits = null; return; } this.organizationUnits = new java.util.ArrayList(organizationUnits); } /** *

* These are the Organizational Units to be included in the report. *

*

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

* * @param organizationUnits * These are the Organizational Units to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withOrganizationUnits(String... organizationUnits) { if (this.organizationUnits == null) { setOrganizationUnits(new java.util.ArrayList(organizationUnits.length)); } for (String ele : organizationUnits) { this.organizationUnits.add(ele); } return this; } /** *

* These are the Organizational Units to be included in the report. *

* * @param organizationUnits * These are the Organizational Units to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withOrganizationUnits(java.util.Collection organizationUnits) { setOrganizationUnits(organizationUnits); return this; } /** *

* These are the Regions to be included in the report. *

* * @return These are the Regions to be included in the report. */ public java.util.List getRegions() { return regions; } /** *

* These are the Regions to be included in the report. *

* * @param regions * These are the Regions to be included in the report. */ public void setRegions(java.util.Collection regions) { if (regions == null) { this.regions = null; return; } this.regions = new java.util.ArrayList(regions); } /** *

* These are the Regions to be included in the report. *

*

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

* * @param regions * These are the Regions to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withRegions(String... regions) { if (this.regions == null) { setRegions(new java.util.ArrayList(regions.length)); } for (String ele : regions) { this.regions.add(ele); } return this; } /** *

* These are the Regions to be included in the report. *

* * @param regions * These are the Regions to be included in the report. * @return Returns a reference to this object so that method calls can be chained together. */ public ReportSetting withRegions(java.util.Collection regions) { setRegions(regions); 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 (getReportTemplate() != null) sb.append("ReportTemplate: ").append(getReportTemplate()).append(","); if (getFrameworkArns() != null) sb.append("FrameworkArns: ").append(getFrameworkArns()).append(","); if (getNumberOfFrameworks() != null) sb.append("NumberOfFrameworks: ").append(getNumberOfFrameworks()).append(","); if (getAccounts() != null) sb.append("Accounts: ").append(getAccounts()).append(","); if (getOrganizationUnits() != null) sb.append("OrganizationUnits: ").append(getOrganizationUnits()).append(","); if (getRegions() != null) sb.append("Regions: ").append(getRegions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReportSetting == false) return false; ReportSetting other = (ReportSetting) obj; if (other.getReportTemplate() == null ^ this.getReportTemplate() == null) return false; if (other.getReportTemplate() != null && other.getReportTemplate().equals(this.getReportTemplate()) == false) return false; if (other.getFrameworkArns() == null ^ this.getFrameworkArns() == null) return false; if (other.getFrameworkArns() != null && other.getFrameworkArns().equals(this.getFrameworkArns()) == false) return false; if (other.getNumberOfFrameworks() == null ^ this.getNumberOfFrameworks() == null) return false; if (other.getNumberOfFrameworks() != null && other.getNumberOfFrameworks().equals(this.getNumberOfFrameworks()) == false) return false; if (other.getAccounts() == null ^ this.getAccounts() == null) return false; if (other.getAccounts() != null && other.getAccounts().equals(this.getAccounts()) == false) return false; if (other.getOrganizationUnits() == null ^ this.getOrganizationUnits() == null) return false; if (other.getOrganizationUnits() != null && other.getOrganizationUnits().equals(this.getOrganizationUnits()) == false) return false; if (other.getRegions() == null ^ this.getRegions() == null) return false; if (other.getRegions() != null && other.getRegions().equals(this.getRegions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReportTemplate() == null) ? 0 : getReportTemplate().hashCode()); hashCode = prime * hashCode + ((getFrameworkArns() == null) ? 0 : getFrameworkArns().hashCode()); hashCode = prime * hashCode + ((getNumberOfFrameworks() == null) ? 0 : getNumberOfFrameworks().hashCode()); hashCode = prime * hashCode + ((getAccounts() == null) ? 0 : getAccounts().hashCode()); hashCode = prime * hashCode + ((getOrganizationUnits() == null) ? 0 : getOrganizationUnits().hashCode()); hashCode = prime * hashCode + ((getRegions() == null) ? 0 : getRegions().hashCode()); return hashCode; } @Override public ReportSetting clone() { try { return (ReportSetting) 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.backup.model.transform.ReportSettingMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy