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.
2984 2985 2986 2987 2988 2989 2990 2991 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2984 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.
2984 2985 2986 2987 2988 2989 2990 2991 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2984 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.
2984 2985 2986 2987 2988 2989 2990 2991 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2984 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.
2984 2985 2986 2987 2988 2989 2990 2991 |
# File 'lib/aws-sdk-lightsail/types.rb', line 2984 class CreateCertificateRequest < Struct.new( :certificate_name, :domain_name, :subject_alternative_names, :tags) SENSITIVE = [] include Aws::Structure end |