public static interface ConfluenceConfiguration.Builder extends SdkPojo, CopyableBuilder<ConfluenceConfiguration.Builder,ConfluenceConfiguration>
| Modifier and Type | Method and Description |
|---|---|
ConfluenceConfiguration.Builder |
attachmentConfiguration(ConfluenceAttachmentConfiguration attachmentConfiguration)
Configuration information for indexing attachments to Confluence blogs and pages.
|
default ConfluenceConfiguration.Builder |
attachmentConfiguration(Consumer<ConfluenceAttachmentConfiguration.Builder> attachmentConfiguration)
Configuration information for indexing attachments to Confluence blogs and pages.
|
ConfluenceConfiguration.Builder |
authenticationType(ConfluenceAuthenticationType authenticationType)
Whether you want to connect to Confluence using basic authentication of user name and password, or a personal
access token.
|
ConfluenceConfiguration.Builder |
authenticationType(String authenticationType)
Whether you want to connect to Confluence using basic authentication of user name and password, or a personal
access token.
|
ConfluenceConfiguration.Builder |
blogConfiguration(ConfluenceBlogConfiguration blogConfiguration)
Configuration information for indexing Confluence blogs.
|
default ConfluenceConfiguration.Builder |
blogConfiguration(Consumer<ConfluenceBlogConfiguration.Builder> blogConfiguration)
Configuration information for indexing Confluence blogs.
|
ConfluenceConfiguration.Builder |
exclusionPatterns(Collection<String> exclusionPatterns)
A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in your
Confluence.
|
ConfluenceConfiguration.Builder |
exclusionPatterns(String... exclusionPatterns)
A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in your
Confluence.
|
ConfluenceConfiguration.Builder |
inclusionPatterns(Collection<String> inclusionPatterns)
A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in your
Confluence.
|
ConfluenceConfiguration.Builder |
inclusionPatterns(String... inclusionPatterns)
A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in your
Confluence.
|
ConfluenceConfiguration.Builder |
pageConfiguration(ConfluencePageConfiguration pageConfiguration)
Configuration information for indexing Confluence pages.
|
default ConfluenceConfiguration.Builder |
pageConfiguration(Consumer<ConfluencePageConfiguration.Builder> pageConfiguration)
Configuration information for indexing Confluence pages.
|
default ConfluenceConfiguration.Builder |
proxyConfiguration(Consumer<ProxyConfiguration.Builder> proxyConfiguration)
Configuration information to connect to your Confluence URL instance via a web proxy.
|
ConfluenceConfiguration.Builder |
proxyConfiguration(ProxyConfiguration proxyConfiguration)
Configuration information to connect to your Confluence URL instance via a web proxy.
|
ConfluenceConfiguration.Builder |
secretArn(String secretArn)
The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the user name and password required
to connect to the Confluence instance.
|
ConfluenceConfiguration.Builder |
serverUrl(String serverUrl)
The URL of your Confluence instance.
|
ConfluenceConfiguration.Builder |
spaceConfiguration(ConfluenceSpaceConfiguration spaceConfiguration)
Configuration information for indexing Confluence spaces.
|
default ConfluenceConfiguration.Builder |
spaceConfiguration(Consumer<ConfluenceSpaceConfiguration.Builder> spaceConfiguration)
Configuration information for indexing Confluence spaces.
|
ConfluenceConfiguration.Builder |
version(ConfluenceVersion version)
The version or the type of Confluence installation to connect to.
|
ConfluenceConfiguration.Builder |
version(String version)
The version or the type of Confluence installation to connect to.
|
default ConfluenceConfiguration.Builder |
vpcConfiguration(Consumer<DataSourceVpcConfiguration.Builder> vpcConfiguration)
Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence.
|
ConfluenceConfiguration.Builder |
vpcConfiguration(DataSourceVpcConfiguration vpcConfiguration)
Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildConfluenceConfiguration.Builder serverUrl(String serverUrl)
The URL of your Confluence instance. Use the full URL of the server. For example, https://server.example.com:port/. You can also use an IP address, for example, https://192.168.1.113/.
serverUrl - The URL of your Confluence instance. Use the full URL of the server. For example,
https://server.example.com:port/. You can also use an IP address, for example,
https://192.168.1.113/.ConfluenceConfiguration.Builder secretArn(String secretArn)
The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the user name and password required to connect to the Confluence instance. If you use Confluence Cloud, you use a generated API token as the password.
You can also provide authentication credentials in the form of a personal access token. For more information, see Using a Confluence data source.
secretArn - The Amazon Resource Name (ARN) of an Secrets Manager secret that contains the user name and password
required to connect to the Confluence instance. If you use Confluence Cloud, you use a generated API
token as the password.
You can also provide authentication credentials in the form of a personal access token. For more information, see Using a Confluence data source.
ConfluenceConfiguration.Builder version(String version)
The version or the type of Confluence installation to connect to.
version - The version or the type of Confluence installation to connect to.ConfluenceVersion,
ConfluenceVersionConfluenceConfiguration.Builder version(ConfluenceVersion version)
The version or the type of Confluence installation to connect to.
version - The version or the type of Confluence installation to connect to.ConfluenceVersion,
ConfluenceVersionConfluenceConfiguration.Builder spaceConfiguration(ConfluenceSpaceConfiguration spaceConfiguration)
Configuration information for indexing Confluence spaces.
spaceConfiguration - Configuration information for indexing Confluence spaces.default ConfluenceConfiguration.Builder spaceConfiguration(Consumer<ConfluenceSpaceConfiguration.Builder> spaceConfiguration)
Configuration information for indexing Confluence spaces.
This is a convenience method that creates an instance of theConfluenceSpaceConfiguration.Builder
avoiding the need to create one manually via ConfluenceSpaceConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to spaceConfiguration(ConfluenceSpaceConfiguration).
spaceConfiguration - a consumer that will call methods on ConfluenceSpaceConfiguration.BuilderspaceConfiguration(ConfluenceSpaceConfiguration)ConfluenceConfiguration.Builder pageConfiguration(ConfluencePageConfiguration pageConfiguration)
Configuration information for indexing Confluence pages.
pageConfiguration - Configuration information for indexing Confluence pages.default ConfluenceConfiguration.Builder pageConfiguration(Consumer<ConfluencePageConfiguration.Builder> pageConfiguration)
Configuration information for indexing Confluence pages.
This is a convenience method that creates an instance of theConfluencePageConfiguration.Builder
avoiding the need to create one manually via ConfluencePageConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to pageConfiguration(ConfluencePageConfiguration).
pageConfiguration - a consumer that will call methods on ConfluencePageConfiguration.BuilderpageConfiguration(ConfluencePageConfiguration)ConfluenceConfiguration.Builder blogConfiguration(ConfluenceBlogConfiguration blogConfiguration)
Configuration information for indexing Confluence blogs.
blogConfiguration - Configuration information for indexing Confluence blogs.default ConfluenceConfiguration.Builder blogConfiguration(Consumer<ConfluenceBlogConfiguration.Builder> blogConfiguration)
Configuration information for indexing Confluence blogs.
This is a convenience method that creates an instance of theConfluenceBlogConfiguration.Builder
avoiding the need to create one manually via ConfluenceBlogConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to blogConfiguration(ConfluenceBlogConfiguration).
blogConfiguration - a consumer that will call methods on ConfluenceBlogConfiguration.BuilderblogConfiguration(ConfluenceBlogConfiguration)ConfluenceConfiguration.Builder attachmentConfiguration(ConfluenceAttachmentConfiguration attachmentConfiguration)
Configuration information for indexing attachments to Confluence blogs and pages.
attachmentConfiguration - Configuration information for indexing attachments to Confluence blogs and pages.default ConfluenceConfiguration.Builder attachmentConfiguration(Consumer<ConfluenceAttachmentConfiguration.Builder> attachmentConfiguration)
Configuration information for indexing attachments to Confluence blogs and pages.
This is a convenience method that creates an instance of theConfluenceAttachmentConfiguration.Builder avoiding the need to create one manually via
ConfluenceAttachmentConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to attachmentConfiguration(ConfluenceAttachmentConfiguration).
attachmentConfiguration - a consumer that will call methods on ConfluenceAttachmentConfiguration.BuilderattachmentConfiguration(ConfluenceAttachmentConfiguration)ConfluenceConfiguration.Builder vpcConfiguration(DataSourceVpcConfiguration vpcConfiguration)
Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence. For more information, see Configuring a VPC.
vpcConfiguration - Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence. For more
information, see Configuring a VPC.default ConfluenceConfiguration.Builder vpcConfiguration(Consumer<DataSourceVpcConfiguration.Builder> vpcConfiguration)
Configuration information for an Amazon Virtual Private Cloud to connect to your Confluence. For more information, see Configuring a VPC.
This is a convenience method that creates an instance of theDataSourceVpcConfiguration.Builder
avoiding the need to create one manually via DataSourceVpcConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called immediately
and its result is passed to vpcConfiguration(DataSourceVpcConfiguration).
vpcConfiguration - a consumer that will call methods on DataSourceVpcConfiguration.BuildervpcConfiguration(DataSourceVpcConfiguration)ConfluenceConfiguration.Builder inclusionPatterns(Collection<String> inclusionPatterns)
A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are included in the index. Content that doesn't match the patterns is excluded from the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
inclusionPatterns - A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in
your Confluence. Content that matches the patterns are included in the index. Content that doesn't
match the patterns is excluded from the index. If content matches both an inclusion and exclusion
pattern, the exclusion pattern takes precedence and the content isn't included in the index.ConfluenceConfiguration.Builder inclusionPatterns(String... inclusionPatterns)
A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are included in the index. Content that doesn't match the patterns is excluded from the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
inclusionPatterns - A list of regular expression patterns to include certain blog posts, pages, spaces, or attachments in
your Confluence. Content that matches the patterns are included in the index. Content that doesn't
match the patterns is excluded from the index. If content matches both an inclusion and exclusion
pattern, the exclusion pattern takes precedence and the content isn't included in the index.ConfluenceConfiguration.Builder exclusionPatterns(Collection<String> exclusionPatterns)
A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are excluded from the index. Content that doesn't match the patterns is included in the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
exclusionPatterns - A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in
your Confluence. Content that matches the patterns are excluded from the index. Content that doesn't
match the patterns is included in the index. If content matches both an inclusion and exclusion
pattern, the exclusion pattern takes precedence and the content isn't included in the index.ConfluenceConfiguration.Builder exclusionPatterns(String... exclusionPatterns)
A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in your Confluence. Content that matches the patterns are excluded from the index. Content that doesn't match the patterns is included in the index. If content matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the content isn't included in the index.
exclusionPatterns - A list of regular expression patterns to exclude certain blog posts, pages, spaces, or attachments in
your Confluence. Content that matches the patterns are excluded from the index. Content that doesn't
match the patterns is included in the index. If content matches both an inclusion and exclusion
pattern, the exclusion pattern takes precedence and the content isn't included in the index.ConfluenceConfiguration.Builder proxyConfiguration(ProxyConfiguration proxyConfiguration)
Configuration information to connect to your Confluence URL instance via a web proxy. You can use this option for Confluence Server.
You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is "a.example.com" and the port is 443, the standard port for HTTPS.
Web proxy credentials are optional and you can use them to connect to a web proxy server that requires basic authentication of user name and password. To store web proxy credentials, you use a secret in Secrets Manager.
It is recommended that you follow best security practices when configuring your web proxy. This includes setting up throttling, setting up logging and monitoring, and applying security patches on a regular basis. If you use your web proxy with multiple data sources, sync jobs that occur at the same time could strain the load on your proxy. It is recommended you prepare your proxy beforehand for any security and load requirements.
proxyConfiguration - Configuration information to connect to your Confluence URL instance via a web proxy. You can use this
option for Confluence Server.
You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is "a.example.com" and the port is 443, the standard port for HTTPS.
Web proxy credentials are optional and you can use them to connect to a web proxy server that requires basic authentication of user name and password. To store web proxy credentials, you use a secret in Secrets Manager.
It is recommended that you follow best security practices when configuring your web proxy. This includes setting up throttling, setting up logging and monitoring, and applying security patches on a regular basis. If you use your web proxy with multiple data sources, sync jobs that occur at the same time could strain the load on your proxy. It is recommended you prepare your proxy beforehand for any security and load requirements.
default ConfluenceConfiguration.Builder proxyConfiguration(Consumer<ProxyConfiguration.Builder> proxyConfiguration)
Configuration information to connect to your Confluence URL instance via a web proxy. You can use this option for Confluence Server.
You must provide the website host name and port number. For example, the host name of https://a.example.com/page1.html is "a.example.com" and the port is 443, the standard port for HTTPS.
Web proxy credentials are optional and you can use them to connect to a web proxy server that requires basic authentication of user name and password. To store web proxy credentials, you use a secret in Secrets Manager.
It is recommended that you follow best security practices when configuring your web proxy. This includes setting up throttling, setting up logging and monitoring, and applying security patches on a regular basis. If you use your web proxy with multiple data sources, sync jobs that occur at the same time could strain the load on your proxy. It is recommended you prepare your proxy beforehand for any security and load requirements.
This is a convenience method that creates an instance of theProxyConfiguration.Builder avoiding the
need to create one manually via ProxyConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to proxyConfiguration(ProxyConfiguration).
proxyConfiguration - a consumer that will call methods on ProxyConfiguration.BuilderproxyConfiguration(ProxyConfiguration)ConfluenceConfiguration.Builder authenticationType(String authenticationType)
Whether you want to connect to Confluence using basic authentication of user name and password, or a personal access token. You can use a personal access token for Confluence Server.
authenticationType - Whether you want to connect to Confluence using basic authentication of user name and password, or a
personal access token. You can use a personal access token for Confluence Server.ConfluenceAuthenticationType,
ConfluenceAuthenticationTypeConfluenceConfiguration.Builder authenticationType(ConfluenceAuthenticationType authenticationType)
Whether you want to connect to Confluence using basic authentication of user name and password, or a personal access token. You can use a personal access token for Confluence Server.
authenticationType - Whether you want to connect to Confluence using basic authentication of user name and password, or a
personal access token. You can use a personal access token for Confluence Server.ConfluenceAuthenticationType,
ConfluenceAuthenticationTypeCopyright © 2023. All rights reserved.