Class: Aws::Kendra::Types::OnPremiseConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::OnPremiseConfiguration
- Defined in:
- gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb
Overview
Provides the configuration information to connect to GitHub Enterprise Server (on premises).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#host_url ⇒ String
The GitHub host URL or API endpoint URL.
-
#organization_name ⇒ String
The name of the organization of the GitHub Enterprise Server (on-premises) account you want to connect to.
-
#ssl_certificate_s3_path ⇒ Types::S3Path
The path to the SSL certificate stored in an Amazon S3 bucket.
Instance Attribute Details
#host_url ⇒ String
The GitHub host URL or API endpoint URL. For example, *https://on-prem-host-url/api/v3/*
7569 7570 7571 7572 7573 7574 7575 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 7569 class OnPremiseConfiguration < Struct.new( :host_url, :organization_name, :ssl_certificate_s3_path) SENSITIVE = [] include Aws::Structure end |
#organization_name ⇒ String
The name of the organization of the GitHub Enterprise Server (on-premises) account you want to connect to. You can find your organization name by logging into GitHub desktop and selecting Your organizations under your profile picture dropdown.
7569 7570 7571 7572 7573 7574 7575 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 7569 class OnPremiseConfiguration < Struct.new( :host_url, :organization_name, :ssl_certificate_s3_path) SENSITIVE = [] include Aws::Structure end |
#ssl_certificate_s3_path ⇒ Types::S3Path
The path to the SSL certificate stored in an Amazon S3 bucket. You use this to connect to GitHub if you require a secure SSL connection.
You can simply generate a self-signed X509 certificate on any computer using OpenSSL. For an example of using OpenSSL to create an X509 certificate, see Create and sign an X509 certificate.
7569 7570 7571 7572 7573 7574 7575 |
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 7569 class OnPremiseConfiguration < Struct.new( :host_url, :organization_name, :ssl_certificate_s3_path) SENSITIVE = [] include Aws::Structure end |