interface ArtifactDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnCustomActionTypePropsMixin_ArtifactDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnCustomActionTypePropsMixin » ArtifactDetailsProperty |
Returns information about the details of an artifact.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
const artifactDetailsProperty: codepipeline_mixins.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty = {
maximumCount: 123,
minimumCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| maximum | number | The maximum number of artifacts allowed for the action type. |
| minimum | number | The minimum number of artifacts allowed for the action type. |
maximumCount?
Type:
number
(optional)
The maximum number of artifacts allowed for the action type.
minimumCount?
Type:
number
(optional)
The minimum number of artifacts allowed for the action type.

.NET
Go
Java
Python
TypeScript