Show / Hide Table of Contents

Class CfnCloudFormationProduct

Specifies a product.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnCloudFormationProduct
Implements
IInspectable
ITaggable
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCloudFormationProduct : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnCloudFormationProduct Inherits CfnResource Implements IInspectable, ITaggable
Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

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 info;

             var cfnCloudFormationProduct = new CfnCloudFormationProduct(this, "MyCfnCloudFormationProduct", new CfnCloudFormationProductProps {
                 Name = "name",
                 Owner = "owner",

                 // the properties below are optional
                 AcceptLanguage = "acceptLanguage",
                 Description = "description",
                 Distributor = "distributor",
                 ProductType = "productType",
                 ProvisioningArtifactParameters = new [] { new ProvisioningArtifactPropertiesProperty {
                     Info = info,

                     // the properties below are optional
                     Description = "description",
                     DisableTemplateValidation = false,
                     Name = "name",
                     Type = "type"
                 } },
                 ReplaceProvisioningArtifacts = false,
                 SourceConnection = new SourceConnectionProperty {
                     ConnectionParameters = new ConnectionParametersProperty {
                         CodeStar = new CodeStarParametersProperty {
                             ArtifactPath = "artifactPath",
                             Branch = "branch",
                             ConnectionArn = "connectionArn",
                             Repository = "repository"
                         }
                     },
                     Type = "type"
                 },
                 SupportDescription = "supportDescription",
                 SupportEmail = "supportEmail",
                 SupportUrl = "supportUrl",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             });

Synopsis

Constructors

CfnCloudFormationProduct(Construct, string, ICfnCloudFormationProductProps)

Specifies a product.

Properties

AcceptLanguage

The language code.

AttrId

Specifies a product.

AttrProductName

The name of the product.

AttrProvisioningArtifactIds

The IDs of the provisioning artifacts.

AttrProvisioningArtifactNames

The names of the provisioning artifacts.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

Specifies a product.

Description

The description of the product.

Distributor

The distributor of the product.

Name

The name of the product.

Owner

The owner of the product.

ProductType

The type of product.

ProvisioningArtifactParameters

The configuration of the provisioning artifact (also known as a version).

ReplaceProvisioningArtifacts

This property is turned off by default.

SourceConnection

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

SupportDescription

The support information about the product.

SupportEmail

The contact email for product support.

SupportUrl

The contact URL for product support.

Tags

Tag Manager which manages the tags for this resource.

TagsRaw

One or more tags.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<string, object>)

Specifies a product.

Constructors

CfnCloudFormationProduct(Construct, string, ICfnCloudFormationProductProps)

Specifies a product.

public CfnCloudFormationProduct(Construct scope, string id, ICfnCloudFormationProductProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnCloudFormationProductProps

Resource properties.

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Properties

AcceptLanguage

The language code.

public virtual string? AcceptLanguage { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

AttrId

Specifies a product.

public virtual string AttrId { get; }
Property Value

string

Remarks

CloudformationAttribute: Id

AttrProductName

The name of the product.

public virtual string AttrProductName { get; }
Property Value

string

Remarks

CloudformationAttribute: ProductName

AttrProvisioningArtifactIds

The IDs of the provisioning artifacts.

public virtual string AttrProvisioningArtifactIds { get; }
Property Value

string

Remarks

CloudformationAttribute: ProvisioningArtifactIds

AttrProvisioningArtifactNames

The names of the provisioning artifacts.

public virtual string AttrProvisioningArtifactNames { get; }
Property Value

string

Remarks

CloudformationAttribute: ProvisioningArtifactNames

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

CfnProperties

Specifies a product.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Description

The description of the product.

public virtual string? Description { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Distributor

The distributor of the product.

public virtual string? Distributor { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Name

The name of the product.

public virtual string Name { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Owner

The owner of the product.

public virtual string Owner { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

ProductType

The type of product.

public virtual string? ProductType { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

ProvisioningArtifactParameters

The configuration of the provisioning artifact (also known as a version).

public virtual object? ProvisioningArtifactParameters { get; set; }
Property Value

object

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

ReplaceProvisioningArtifacts

This property is turned off by default.

public virtual object? ReplaceProvisioningArtifacts { get; set; }
Property Value

object

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

SourceConnection

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

public virtual object? SourceConnection { get; set; }
Property Value

object

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

SupportDescription

The support information about the product.

public virtual string? SupportDescription { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

SupportEmail

The contact email for product support.

public virtual string? SupportEmail { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

SupportUrl

The contact URL for product support.

public virtual string? SupportUrl { get; set; }
Property Value

string

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Tags

Tag Manager which manages the tags for this resource.

public virtual TagManager Tags { get; }
Property Value

TagManager

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

TagsRaw

One or more tags.

public virtual ICfnTag[]? TagsRaw { get; set; }
Property Value

ICfnTag[]

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

Specifies a product.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

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

CloudformationResource: AWS::ServiceCatalog::CloudFormationProduct

ExampleMetadata: fixture=_generated

Implements

IInspectable
ITaggable
Back to top Generated by DocFX