Show / Hide Table of Contents

Interface CfnCloudFormationProduct.ISourceConnectionProperty

A top level ProductViewDetail response containing details about the product’s connection.

Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCloudFormationProduct.ISourceConnectionProperty
Syntax (vb)
Public Interface CfnCloudFormationProduct.ISourceConnectionProperty
Remarks

AWS Service Catalog returns this field for the CreateProduct , UpdateProduct , DescribeProductAsAdmin , and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.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 sourceConnectionProperty = new SourceConnectionProperty {
                 ConnectionParameters = new ConnectionParametersProperty {
                     CodeStar = new CodeStarParametersProperty {
                         ArtifactPath = "artifactPath",
                         Branch = "branch",
                         ConnectionArn = "connectionArn",
                         Repository = "repository"
                     }
                 },
                 Type = "type"
             };

Synopsis

Properties

ConnectionParameters

The connection details based on the connection Type .

Type

The only supported SourceConnection type is Codestar.

Properties

ConnectionParameters

The connection details based on the connection Type .

object ConnectionParameters { get; }
Property Value

object

Remarks

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

Type

The only supported SourceConnection type is Codestar.

string Type { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX