Class: Aws::AppSync::Types::CreateDomainNameRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::CreateDomainNameRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass CreateDomainNameRequest data as a hash:
{
domain_name: "DomainName", # required
certificate_arn: "CertificateArn", # required
description: "Description",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate.
-
#description ⇒ String
A description of the
DomainName
. -
#domain_name ⇒ String
The domain name.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) of the certificate. This can be an Certificate Manager (ACM) certificate or an Identity and Access Management (IAM) server certificate.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 839 class CreateDomainNameRequest < Struct.new( :domain_name, :certificate_arn, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the DomainName
.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 839 class CreateDomainNameRequest < Struct.new( :domain_name, :certificate_arn, :description) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The domain name.
839 840 841 842 843 844 845 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 839 class CreateDomainNameRequest < Struct.new( :domain_name, :certificate_arn, :description) SENSITIVE = [] include Aws::Structure end |