Show / Hide Table of Contents

Class PortfolioShareOptions

Options for portfolio share.

Inheritance
object
PortfolioShareOptions
Implements
IPortfolioShareOptions
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 PortfolioShareOptions : IPortfolioShareOptions
Syntax (vb)
Public Class PortfolioShareOptions Implements IPortfolioShareOptions
Remarks

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 portfolioShareOptions = new PortfolioShareOptions {
                MessageLanguage = MessageLanguage.EN,
                ShareTagOptions = false
            };

Synopsis

Constructors

PortfolioShareOptions()

Options for portfolio share.

Properties

MessageLanguage

The message language of the share.

ShareTagOptions

Whether to share tagOptions as a part of the portfolio share.

Constructors

PortfolioShareOptions()

Options for portfolio share.

public PortfolioShareOptions()
Remarks

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 portfolioShareOptions = new PortfolioShareOptions {
                MessageLanguage = MessageLanguage.EN,
                ShareTagOptions = false
            };

Properties

MessageLanguage

The message language of the share.

public MessageLanguage? MessageLanguage { get; set; }
Property Value

MessageLanguage?

Remarks

Controls status and error message language for share.

Default: - English

ShareTagOptions

Whether to share tagOptions as a part of the portfolio share.

public bool? ShareTagOptions { get; set; }
Property Value

bool?

Remarks

Default: - share not specified

Implements

IPortfolioShareOptions
Back to top Generated by DocFX