Show / Hide Table of Contents

Class CfnCloudFormationProduct.CodeStarParametersProperty

The subtype containing details about the Codestar connection Type .

Inheritance
object
CfnCloudFormationProduct.CodeStarParametersProperty
Implements
CfnCloudFormationProduct.ICodeStarParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudFormationProduct.CodeStarParametersProperty : CfnCloudFormationProduct.ICodeStarParametersProperty
Syntax (vb)
Public Class CfnCloudFormationProduct.CodeStarParametersProperty Implements CfnCloudFormationProduct.ICodeStarParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Servicecatalog;

             var codeStarParametersProperty = new CodeStarParametersProperty {
                 ArtifactPath = "artifactPath",
                 Branch = "branch",
                 ConnectionArn = "connectionArn",
                 Repository = "repository"
             };

Synopsis

Constructors

CodeStarParametersProperty()

The subtype containing details about the Codestar connection Type .

Properties

ArtifactPath

The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".

Branch

The specific branch where the artifact resides.

ConnectionArn

The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.

Repository

The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".

Constructors

CodeStarParametersProperty()

The subtype containing details about the Codestar connection Type .

public CodeStarParametersProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Servicecatalog;

             var codeStarParametersProperty = new CodeStarParametersProperty {
                 ArtifactPath = "artifactPath",
                 Branch = "branch",
                 ConnectionArn = "connectionArn",
                 Repository = "repository"
             };

Properties

ArtifactPath

The absolute path wehre the artifact resides within the repo and branch, formatted as "folder/file.json.".

public string ArtifactPath { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html#cfn-servicecatalog-cloudformationproduct-codestarparameters-artifactpath

Branch

The specific branch where the artifact resides.

public string Branch { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html#cfn-servicecatalog-cloudformationproduct-codestarparameters-branch

ConnectionArn

The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.

public string ConnectionArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html#cfn-servicecatalog-cloudformationproduct-codestarparameters-connectionarn

Repository

The specific repository where the product’s artifact-to-be-synced resides, formatted as "Account/Repo.".

public string Repository { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html#cfn-servicecatalog-cloudformationproduct-codestarparameters-repository

Implements

CfnCloudFormationProduct.ICodeStarParametersProperty
Back to top Generated by DocFX