AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Contains the response to a successful UploadServerCertificate request.
Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z
public class UploadServerCertificateResponse : AmazonWebServiceResponse
The UploadServerCertificateResponse type exposes the following members
Name | Description | |
---|---|---|
UploadServerCertificateResponse() |
Name | Type | Description | |
---|---|---|---|
ContentLength | System.Int64 | Inherited from Amazon.Runtime.AmazonWebServiceResponse. | |
HttpStatusCode | System.Net.HttpStatusCode | Inherited from Amazon.Runtime.AmazonWebServiceResponse. | |
ResponseMetadata | Amazon.Runtime.ResponseMetadata | Inherited from Amazon.Runtime.AmazonWebServiceResponse. | |
ServerCertificateMetadata | Amazon.IdentityManagement.Model.ServerCertificateMetadata |
Gets and sets the property ServerCertificateMetadata. The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key. |
|
Tags | System.Collections.Generic.List<Amazon.IdentityManagement.Model.Tag> |
Gets and sets the property Tags. A list of tags that are attached to the new IAM server certificate. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide. |
The following upload-server-certificate command uploads a server certificate to your AWS account:
var client = new AmazonIdentityManagementServiceClient(); var response = client.UploadServerCertificate(new UploadServerCertificateRequest { CertificateBody = "-----BEGIN CERTIFICATE-----<a very long certificate text string>-----END CERTIFICATE-----", Path = "/company/servercerts/", PrivateKey = "-----BEGIN DSA PRIVATE KEY-----<a very long private key string>-----END DSA PRIVATE KEY-----", ServerCertificateName = "ProdServerCert" }); ServerCertificateMetadata serverCertificateMetadata = response.ServerCertificateMetadata;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5