Interface RDSSourceConfig.Builder

All Superinterfaces:
Buildable, CopyableBuilder<RDSSourceConfig.Builder,RDSSourceConfig>, SdkBuilder<RDSSourceConfig.Builder,RDSSourceConfig>, SdkPojo
Enclosing class:
RDSSourceConfig

public static interface RDSSourceConfig.Builder extends SdkPojo, CopyableBuilder<RDSSourceConfig.Builder,RDSSourceConfig>
  • Method Details

    • dbInstanceIdentifier

      RDSSourceConfig.Builder dbInstanceIdentifier(String dbInstanceIdentifier)

      A string identifying the database instance.

      Parameters:
      dbInstanceIdentifier - A string identifying the database instance.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databaseHost

      RDSSourceConfig.Builder databaseHost(String databaseHost)

      The host name of the database.

      Parameters:
      databaseHost - The host name of the database.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databasePort

      RDSSourceConfig.Builder databasePort(Integer databasePort)

      The port number where the database can be accessed.

      Parameters:
      databasePort - The port number where the database can be accessed.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • secretManagerArn

      RDSSourceConfig.Builder secretManagerArn(String secretManagerArn)

      The Amazon Resource Name (ARN) of the AWS Secrets Manager role.

      Parameters:
      secretManagerArn - The Amazon Resource Name (ARN) of the AWS Secrets Manager role.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • databaseName

      RDSSourceConfig.Builder databaseName(String databaseName)

      The name of the RDS database.

      Parameters:
      databaseName - The name of the RDS database.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • tableName

      RDSSourceConfig.Builder tableName(String tableName)

      The name of the table in the database.

      Parameters:
      tableName - The name of the table in the database.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • roleArn

      RDSSourceConfig.Builder roleArn(String roleArn)

      The Amazon Resource Name (ARN) of the role.

      Parameters:
      roleArn - The Amazon Resource Name (ARN) of the role.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • vpcConfiguration

      RDSSourceConfig.Builder vpcConfiguration(VpcConfiguration vpcConfiguration)

      An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.

      Parameters:
      vpcConfiguration - An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • vpcConfiguration

      default RDSSourceConfig.Builder vpcConfiguration(Consumer<VpcConfiguration.Builder> vpcConfiguration)

      An object containing information about the Amazon Virtual Private Cloud (VPC) configuration.

      This is a convenience method that creates an instance of the VpcConfiguration.Builder avoiding the need to create one manually via VpcConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to vpcConfiguration(VpcConfiguration).

      Parameters:
      vpcConfiguration - a consumer that will call methods on VpcConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: