-
-
Save OksanaH/47552f3fd863c3da7581fc6dcb4eb766 to your computer and use it in GitHub Desktop.
CdkPipelinesPipelineStack.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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