interface ArtifactDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodePipeline.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodepipeline#CfnCustomActionTypePropsMixin_ArtifactDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codepipeline.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_codepipeline.CfnCustomActionTypePropsMixin.ArtifactDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codepipeline » 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 { aws_codepipeline as codepipeline } from '@aws-cdk/cfn-property-mixins';
const artifactDetailsProperty: codepipeline.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