Show / Hide Table of Contents

Class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty

The subtype containing details about the Codestar connection Type .

Inheritance
object
CfnCloudFormationProductPropsMixin.CodeStarParametersProperty
Implements
CfnCloudFormationProductPropsMixin.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.CfnPropertyMixins.AWS.ServiceCatalog
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty : CfnCloudFormationProductPropsMixin.ICodeStarParametersProperty
Syntax (vb)
Public Class CfnCloudFormationProductPropsMixin.CodeStarParametersProperty Implements CfnCloudFormationProductPropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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

CfnCloudFormationProductPropsMixin.ICodeStarParametersProperty
Back to top Generated by DocFX