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

com.amazonaws.services.identitymanagement.model.ServerCertificateMetadata Maven / Gradle / Ivy

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

/**
 * 

* ServerCertificateMetadata contains information about a server * certificate without its certificate body, certificate chain, and * private key. *

*

* This data type is used as a response element in the action * UploadServerCertificate and ListServerCertificates. *

*/ public class ServerCertificateMetadata { /** * Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
*/ private String path; /** * The name that identifies the server certificate. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
*/ private String serverCertificateName; /** * The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 16 - 32
* Pattern: [\w]*
*/ private String serverCertificateId; /** * The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 20 - 2048
*/ private String arn; /** * The date when the server certificate was uploaded. */ private java.util.Date uploadDate; /** * Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @return Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public String getPath() { return path; } /** * Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @param path Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public void setPath(String path) { this.path = path; } /** * Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 512
* Pattern: (\u002F)|(\u002F[\u0021-\u007F]+\u002F)
* * @param path Path to the server certificate. For more information about paths, see * Identifiers for IAM Entities in Using AWS * Identity and Access Management. * * @return A reference to this updated object so that method calls can be chained * together. */ public ServerCertificateMetadata withPath(String path) { this.path = path; return this; } /** * The name that identifies the server certificate. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @return The name that identifies the server certificate. */ public String getServerCertificateName() { return serverCertificateName; } /** * The name that identifies the server certificate. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param serverCertificateName The name that identifies the server certificate. */ public void setServerCertificateName(String serverCertificateName) { this.serverCertificateName = serverCertificateName; } /** * The name that identifies the server certificate. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 1 - 128
* Pattern: [\w+=,.@-]*
* * @param serverCertificateName The name that identifies the server certificate. * * @return A reference to this updated object so that method calls can be chained * together. */ public ServerCertificateMetadata withServerCertificateName(String serverCertificateName) { this.serverCertificateName = serverCertificateName; return this; } /** * The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 16 - 32
* Pattern: [\w]*
* * @return The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public String getServerCertificateId() { return serverCertificateId; } /** * The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 16 - 32
* Pattern: [\w]*
* * @param serverCertificateId The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public void setServerCertificateId(String serverCertificateId) { this.serverCertificateId = serverCertificateId; } /** * The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 16 - 32
* Pattern: [\w]*
* * @param serverCertificateId The stable and unique string identifying the server certificate. For * more information about IDs, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. * * @return A reference to this updated object so that method calls can be chained * together. */ public ServerCertificateMetadata withServerCertificateId(String serverCertificateId) { this.serverCertificateId = serverCertificateId; return this; } /** * The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 20 - 2048
* * @return The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public String getArn() { return arn; } /** * The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Constraints:
* Length: 20 - 2048
* * @param arn The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. */ public void setArn(String arn) { this.arn = arn; } /** * The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. *

* Returns a reference to this object so that method calls can be chained together. *

* Constraints:
* Length: 20 - 2048
* * @param arn The Amazon Resource Name (ARN) specifying the server certificate. For * more information about ARNs and how to use them in policies, see Identifiers for IAM Entities in Using AWS * Identity and Access Management. * * @return A reference to this updated object so that method calls can be chained * together. */ public ServerCertificateMetadata withArn(String arn) { this.arn = arn; return this; } /** * The date when the server certificate was uploaded. * * @return The date when the server certificate was uploaded. */ public java.util.Date getUploadDate() { return uploadDate; } /** * The date when the server certificate was uploaded. * * @param uploadDate The date when the server certificate was uploaded. */ public void setUploadDate(java.util.Date uploadDate) { this.uploadDate = uploadDate; } /** * The date when the server certificate was uploaded. *

* Returns a reference to this object so that method calls can be chained together. * * @param uploadDate The date when the server certificate was uploaded. * * @return A reference to this updated object so that method calls can be chained * together. */ public ServerCertificateMetadata withUploadDate(java.util.Date uploadDate) { this.uploadDate = uploadDate; 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("{"); sb.append("Path: " + path + ", "); sb.append("ServerCertificateName: " + serverCertificateName + ", "); sb.append("ServerCertificateId: " + serverCertificateId + ", "); sb.append("Arn: " + arn + ", "); sb.append("UploadDate: " + uploadDate + ", "); sb.append("}"); return sb.toString(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy