Skip to content

Instantly share code, notes, and snippets.

@OksanaH
Created August 31, 2021 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OksanaH/47552f3fd863c3da7581fc6dcb4eb766 to your computer and use it in GitHub Desktop.
Save OksanaH/47552f3fd863c3da7581fc6dcb4eb766 to your computer and use it in GitHub Desktop.
CdkPipelinesPipelineStack.cs
namespace CdkPipelines
{
public class CdkPipelinesPipelineStack : Stack
{
internal CdkPipelinesPipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
{
var connectionArn = "arn:aws:codestar-connections:eu-west-1:01234567890:connection/12ae43b8-923e-4a01-ba4e-274454669859";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment