Class: Aws::CognitoIdentityProvider::Types::CustomDomainConfigType
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::CustomDomainConfigType
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass CustomDomainConfigType data as a hash:
{
certificate_arn: "ArnType", # required
}
The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of an AWS Certificate Manager SSL certificate.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of an AWS Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain.
3916 3917 3918 3919 3920 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 3916 class CustomDomainConfigType < Struct.new( :certificate_arn) SENSITIVE = [] include Aws::Structure end |