Class: Aws::Amplify::Types::CertificateSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::CertificateSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The type of SSL/TLS certificate to use for your custom domain. If a certificate type isn’t specified, Amplify uses the default ‘AMPLIFY_MANAGED` certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_certificate_arn ⇒ String
The Amazon resource name (ARN) for the custom certificate that you have already added to Certificate Manager in your Amazon Web Services account.
-
#type ⇒ String
The certificate type.
Instance Attribute Details
#custom_certificate_arn ⇒ String
The Amazon resource name (ARN) for the 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`.
620 621 622 623 624 625 |
# File 'lib/aws-sdk-amplify/types.rb', line 620 class CertificateSettings < Struct.new( :type, :custom_certificate_arn) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The certificate type.
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*.
[1]: docs.aws.amazon.com/acm/latest/userguide/import-certificate.html
620 621 622 623 624 625 |
# File 'lib/aws-sdk-amplify/types.rb', line 620 class CertificateSettings < Struct.new( :type, :custom_certificate_arn) SENSITIVE = [] include Aws::Structure end |