Show / Hide Table of Contents

Interface IAssetPublishingCommand

(deprecated) Instructions to publish certain assets.

Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Pipelines.dll
Syntax (csharp)
public interface IAssetPublishingCommand
Syntax (vb)
Public Interface IAssetPublishingCommand
Remarks

Stability: Deprecated

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.Pipelines;

var assetPublishingCommand = new AssetPublishingCommand {
    AssetId = "assetId",
    AssetManifestPath = "assetManifestPath",
    AssetPublishingRoleArn = "assetPublishingRoleArn",
    AssetSelector = "assetSelector",
    AssetType = AssetType.FILE
};

Synopsis

Properties

AssetId

(deprecated) Asset identifier.

AssetManifestPath

(deprecated) Asset manifest path.

AssetPublishingRoleArn

(deprecated) ARN of the IAM Role used to publish this asset.

AssetSelector

(deprecated) Asset selector to pass to cdk-assets.

AssetType

(deprecated) Type of asset to publish.

Properties

AssetId

(deprecated) Asset identifier.

string AssetId { get; }
Property Value

System.String

Remarks

Stability: Deprecated

AssetManifestPath

(deprecated) Asset manifest path.

string AssetManifestPath { get; }
Property Value

System.String

Remarks

Stability: Deprecated

AssetPublishingRoleArn

(deprecated) ARN of the IAM Role used to publish this asset.

string AssetPublishingRoleArn { get; }
Property Value

System.String

Remarks

Stability: Deprecated

AssetSelector

(deprecated) Asset selector to pass to cdk-assets.

string AssetSelector { get; }
Property Value

System.String

Remarks

Stability: Deprecated

AssetType

(deprecated) Type of asset to publish.

AssetType AssetType { get; }
Property Value

AssetType

Remarks

Stability: Deprecated

Back to top Generated by DocFX