NAME
Paws::Lightsail::CreateCertificate - Arguments for method CreateCertificate on Paws::Lightsail
DESCRIPTION
This class represents the parameters used for calling the method CreateCertificate on the Amazon Lightsail service. Use the attributes of this class as arguments to method CreateCertificate.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateCertificate.
SYNOPSIS
my $lightsail = Paws->service('Lightsail');
my $CreateCertificateResult = $lightsail->CreateCertificate(
CertificateName => 'MyCertificateName',
DomainName => 'MyDomainName',
SubjectAlternativeNames => [ 'MyDomainName', ... ], # OPTIONAL
Tags => [
{
Key => 'MyTagKey', # OPTIONAL
Value => 'MyTagValue', # OPTIONAL
},
...
], # OPTIONAL
);
# Results:
my $Certificate = $CreateCertificateResult->Certificate;
my $Operations = $CreateCertificateResult->Operations;
# Returns a L<Paws::Lightsail::CreateCertificateResult> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/lightsail/CreateCertificate
ATTRIBUTES
REQUIRED CertificateName => Str
The name for the certificate.
REQUIRED DomainName => Str
The domain name (e.g., example.com
) for the certificate.
SubjectAlternativeNames => ArrayRef[Str|Undef]
An array of strings that specify the alternate domains (e.g., example2.com
) and subdomains (e.g., blog.example.com
) for the certificate.
You can specify a maximum of nine alternate domains (in addition to the primary domain name).
Wildcard domain entries (e.g., *.example.com
) are not supported.
Tags => ArrayRef[Paws::Lightsail::Tag]
The tag keys and optional values to add to the certificate during create.
Use the TagResource
action to tag a resource after it's created.
SEE ALSO
This class forms part of Paws, documenting arguments for method CreateCertificate in Paws::Lightsail
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues