Class: Aws::Lightsail::Types::CreateCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::CreateCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_name ⇒ String
The name for the certificate.
-
#domain_name ⇒ String
The domain name (‘example.com`) for the certificate.
-
#subject_alternative_names ⇒ Array<String>
An array of strings that specify the alternate domains (‘example2.com`) and subdomains (`blog.example.com`) for the certificate.
-
#tags ⇒ Array<Types::Tag>
The tag keys and optional values to add to the certificate during create.
Instance Attribute Details
#certificate_name ⇒ String
The name for the certificate.
3098 3099 3100 3101 3102 3103 3104 3105 |
# File 'lib/aws-sdk-lightsail/types.rb', line 3098 class CreateCertificateRequest < Struct.new( :certificate_name, :domain_name, :subject_alternative_names, :tags) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The domain name (‘example.com`) for the certificate.
3098 3099 3100 3101 3102 3103 3104 3105 |
# File 'lib/aws-sdk-lightsail/types.rb', line 3098 class CreateCertificateRequest < Struct.new( :certificate_name, :domain_name, :subject_alternative_names, :tags) SENSITIVE = [] include Aws::Structure end |
#subject_alternative_names ⇒ Array<String>
An array of strings that specify the alternate domains (‘example2.com`) and subdomains (`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 (‘*.example.com`) are not supported.
3098 3099 3100 3101 3102 3103 3104 3105 |
# File 'lib/aws-sdk-lightsail/types.rb', line 3098 class CreateCertificateRequest < Struct.new( :certificate_name, :domain_name, :subject_alternative_names, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::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.
3098 3099 3100 3101 3102 3103 3104 3105 |
# File 'lib/aws-sdk-lightsail/types.rb', line 3098 class CreateCertificateRequest < Struct.new( :certificate_name, :domain_name, :subject_alternative_names, :tags) SENSITIVE = [] include Aws::Structure end |