Class: Aws::APIGateway::Types::DomainName
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DomainName
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Represents a custom domain name as a user-friendly host name of an API (RestApi).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint or private endpoint for this domain name.
-
#certificate_name ⇒ String
The name of the certificate that will be used by edge-optimized endpoint or private endpoint for this domain name.
-
#certificate_upload_date ⇒ Time
The timestamp when the certificate that was used by edge-optimized endpoint or private endpoint for this domain name was uploaded.
-
#distribution_domain_name ⇒ String
The domain name of the Amazon CloudFront distribution associated with this custom domain name for an edge-optimized endpoint.
-
#distribution_hosted_zone_id ⇒ String
The region-agnostic Amazon Route 53 Hosted Zone ID of the edge-optimized endpoint.
-
#domain_name ⇒ String
The custom domain name as an API host name, for example,
my-api.example.com. -
#domain_name_arn ⇒ String
The ARN of the domain name.
-
#domain_name_id ⇒ String
The identifier for the domain name resource.
-
#domain_name_status ⇒ String
The status of the DomainName migration.
-
#domain_name_status_message ⇒ String
An optional text message containing detailed information about status of the DomainName migration.
-
#endpoint_access_mode ⇒ String
The endpoint access mode of the DomainName.
-
#endpoint_configuration ⇒ Types::EndpointConfiguration
The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name.
-
#management_policy ⇒ String
A stringified JSON policy document that applies to the API Gateway Management service for this DomainName.
-
#mutual_tls_authentication ⇒ Types::MutualTlsAuthentication
The mutual TLS authentication configuration for a custom domain name.
-
#ownership_verification_certificate_arn ⇒ String
The ARN of the public certificate issued by ACM to validate ownership of your custom domain.
-
#policy ⇒ String
A stringified JSON policy document that applies to the
execute-apiservice for this DomainName regardless of the caller and Method configuration. -
#regional_certificate_arn ⇒ String
The reference to an Amazon Web Services-managed certificate that will be used for validating the regional domain name.
-
#regional_certificate_name ⇒ String
The name of the certificate that will be used for validating the regional domain name.
-
#regional_domain_name ⇒ String
The domain name associated with the regional endpoint for this custom domain name.
-
#regional_hosted_zone_id ⇒ String
The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint.
-
#routing_mode ⇒ String
The routing mode for this domain name.
-
#security_policy ⇒ String
The Transport Layer Security (TLS) version + cipher suite for this DomainName.
-
#tags ⇒ Hash<String,String>
The collection of tags.
Instance Attribute Details
#certificate_arn ⇒ String
The reference to an Amazon Web Services-managed certificate that will be used by edge-optimized endpoint or private endpoint for this domain name. Certificate Manager is the only supported source.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#certificate_name ⇒ String
The name of the certificate that will be used by edge-optimized endpoint or private endpoint for this domain name.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#certificate_upload_date ⇒ Time
The timestamp when the certificate that was used by edge-optimized endpoint or private endpoint for this domain name was uploaded.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#distribution_domain_name ⇒ String
The domain name of the Amazon CloudFront distribution associated with this custom domain name for an edge-optimized endpoint. You set up this association when adding a DNS record pointing the custom domain name to this distribution name. For more information about CloudFront distributions, see the Amazon CloudFront documentation.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#distribution_hosted_zone_id ⇒ String
The region-agnostic Amazon Route 53 Hosted Zone ID of the
edge-optimized endpoint. The valid value is Z2FDTNDATAQYW2 for all
the regions. For more information, see Set up a Regional Custom
Domain Name and AWS Regions and Endpoints for API Gateway.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The custom domain name as an API host name, for example,
my-api.example.com.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#domain_name_arn ⇒ String
The ARN of the domain name.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#domain_name_id ⇒ String
The identifier for the domain name resource. Supported only for private custom domain names.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#domain_name_status ⇒ String
The status of the DomainName migration. The valid values are
AVAILABLE and UPDATING. If the status is UPDATING, the domain
cannot be modified further until the existing operation is complete.
If it is AVAILABLE, the domain can be updated.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#domain_name_status_message ⇒ String
An optional text message containing detailed information about status of the DomainName migration.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#endpoint_access_mode ⇒ String
The endpoint access mode of the DomainName.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#endpoint_configuration ⇒ Types::EndpointConfiguration
The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#management_policy ⇒ String
A stringified JSON policy document that applies to the API Gateway Management service for this DomainName. This policy document controls access for access association sources to create domain name access associations with this DomainName. Supported only for private custom domain names.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#mutual_tls_authentication ⇒ Types::MutualTlsAuthentication
The mutual TLS authentication configuration for a custom domain name. If specified, API Gateway performs two-way authentication between the client and the server. Clients must present a trusted certificate to access your API.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#ownership_verification_certificate_arn ⇒ String
The ARN of the public certificate issued by ACM to validate ownership of your custom domain. Only required when configuring mutual TLS and using an ACM imported or private CA certificate ARN as the regionalCertificateArn.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#policy ⇒ String
A stringified JSON policy document that applies to the execute-api
service for this DomainName regardless of the caller and Method
configuration. Supported only for private custom domain names.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#regional_certificate_arn ⇒ String
The reference to an Amazon Web Services-managed certificate that will be used for validating the regional domain name. Certificate Manager is the only supported source.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#regional_certificate_name ⇒ String
The name of the certificate that will be used for validating the regional domain name.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#regional_domain_name ⇒ String
The domain name associated with the regional endpoint for this custom domain name. You set up this association by adding a DNS record that points the custom domain name to this regional domain name. The regional domain name is returned by API Gateway when you create a regional endpoint.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#regional_hosted_zone_id ⇒ String
The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint. For more information, see Set up a Regional Custom Domain Name and AWS Regions and Endpoints for API Gateway.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#routing_mode ⇒ String
The routing mode for this domain name. The routing mode determines how API Gateway sends traffic from your custom domain name to your private APIs.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#security_policy ⇒ String
The Transport Layer Security (TLS) version + cipher suite for this DomainName.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The collection of tags. Each tag element is associated with a given resource.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2053 class DomainName < Struct.new( :domain_name, :domain_name_id, :domain_name_arn, :certificate_name, :certificate_arn, :certificate_upload_date, :regional_domain_name, :regional_hosted_zone_id, :regional_certificate_name, :regional_certificate_arn, :distribution_domain_name, :distribution_hosted_zone_id, :endpoint_configuration, :domain_name_status, :domain_name_status_message, :security_policy, :endpoint_access_mode, :tags, :mutual_tls_authentication, :ownership_verification_certificate_arn, :management_policy, :policy, :routing_mode) SENSITIVE = [] include Aws::Structure end |