Is there an attribute for the Endpoint URL of Redshift Serverless

0

I have multiple needs in for the endpoint URL of a Redshift Serverless Workgroup that I am building in CloudFormation. I can not, for the life of me, figure out what the attribute is named or if it even exists. Is there an attribute for the Endpoint in Redshift Serverless? Essentially I am looking for the serverless equivalent of Redshift Cluster's !GetAtt RedshiftCluster.Endpoint.Address.

Any help is appreciated.

asked 5 months ago247 views
1 Answer
0

Hi,

You may be referring to this:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-endpoint.html

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshiftserverless-workgroup.html

The AWS::RedshiftServerless::Workgroup resource does include an Endpoint attribute that you can reference. This Endpoint attribute is part of the properties of the Workgroup resource, and it comprises several components:

  • Address: The DNS address of the VPC endpoint.
  • Port: The port that Amazon Redshift Serverless listens on.
  • VpcEndpoints: An array of VpcEndpoint objects.

These components of the Endpoint are specified within the AWS::RedshiftServerless::Workgroup resource in your CloudFormation template. You can define them in both JSON and YAML formats. The Endpoint attribute is not a required field, meaning it's optional to specify it in your CloudFormation template, but it's available for use when needed.

answered 5 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions