Class: Aws::Amplify::Types::Certificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::Certificate
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Describes the current SSL/TLS certificate that is in use for the
domain. If you are using CreateDomainAssociation
to create a new
domain association, Certificate
describes the new certificate that
you are creating.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_verification_dns_record ⇒ String
The DNS record for certificate verification.
-
#custom_certificate_arn ⇒ String
The Amazon resource name (ARN) for a custom certificate that you have already added to Certificate Manager in your Amazon Web Services account.
-
#type ⇒ String
The type of SSL/TLS certificate that you want to use.
Instance Attribute Details
#certificate_verification_dns_record ⇒ String
The DNS record for certificate verification.
580 581 582 583 584 585 586 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 580 class Certificate < Struct.new( :type, :custom_certificate_arn, :certificate_verification_dns_record) SENSITIVE = [] include Aws::Structure end |
#custom_certificate_arn ⇒ String
The Amazon resource name (ARN) for a custom certificate that you have already added to Certificate Manager in your Amazon Web Services account.
This field is required only when the certificate type is CUSTOM
.
580 581 582 583 584 585 586 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 580 class Certificate < Struct.new( :type, :custom_certificate_arn, :certificate_verification_dns_record) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of SSL/TLS certificate that you want to use.
Specify AMPLIFY_MANAGED
to use the default certificate that
Amplify provisions for you.
Specify CUSTOM
to use your own certificate that you have already
added to Certificate Manager in your Amazon Web Services account.
Make sure you request (or import) the certificate in the US East (N.
Virginia) Region (us-east-1). For more information about using ACM,
see Importing certificates into Certificate Manager in the ACM
User guide.
580 581 582 583 584 585 586 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 580 class Certificate < Struct.new( :type, :custom_certificate_arn, :certificate_verification_dns_record) SENSITIVE = [] include Aws::Structure end |