Amazon.IdentityManagement.Model.UploadServerCertificateRequest.UploadServerCertificateRequest C# (CSharp) Method

UploadServerCertificateRequest() public method

Instantiates UploadServerCertificateRequest with the parameterized properties
public UploadServerCertificateRequest ( string serverCertificateName, string certificateBody, string privateKey ) : System
serverCertificateName string The name for the server certificate. Do not include the path in this value. The name of the certificate cannot contain any spaces. This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
certificateBody string The contents of the public key certificate in PEM-encoded format. This parameter allows (per its regex pattern) a string of characters consisting of any printable ASCII character ranging from the space character (\u0020) through end of the ASCII character range (\u00FF). It also includes the special characters tab (\u0009), line feed (\u000A), and carriage return (\u000D).
privateKey string The contents of the private key in PEM-encoded format. This parameter allows (per its regex pattern) a string of characters consisting of any printable ASCII character ranging from the space character (\u0020) through end of the ASCII character range (\u00FF). It also includes the special characters tab (\u0009), line feed (\u000A), and carriage return (\u000D).
return System
        public UploadServerCertificateRequest(string serverCertificateName, string certificateBody, string privateKey)
        {
            _serverCertificateName = serverCertificateName;
            _certificateBody = certificateBody;
            _privateKey = privateKey;
        }

Same methods

UploadServerCertificateRequest::UploadServerCertificateRequest ( ) : System