Show / Hide Table of Contents

Class CfnCloudFormationProduct.ConnectionParametersProperty

Provides connection details.

Inheritance
object
CfnCloudFormationProduct.ConnectionParametersProperty
Implements
CfnCloudFormationProduct.IConnectionParametersProperty
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.ConnectionParametersProperty : CfnCloudFormationProduct.IConnectionParametersProperty
Syntax (vb)
Public Class CfnCloudFormationProduct.ConnectionParametersProperty Implements CfnCloudFormationProduct.IConnectionParametersProperty
Remarks

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

Synopsis

Constructors

ConnectionParametersProperty()

Provides connection details.

Properties

CodeStar

Provides ConnectionType details.

Constructors

ConnectionParametersProperty()

Provides connection details.

public ConnectionParametersProperty()
Remarks

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

Properties

CodeStar

Provides ConnectionType details.

public object? CodeStar { get; set; }
Property Value

object

Remarks

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

Implements

CfnCloudFormationProduct.IConnectionParametersProperty
Back to top Generated by DocFX