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.

gefragt vor 5 Monaten269 Aufrufe
1 Antwort
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.

beantwortet vor 5 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen