interface SoftwareProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ThinClient.CfnSoftwareSetPropsMixin.SoftwareProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsthinclient#CfnSoftwareSetPropsMixin_SoftwareProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.thinclient.CfnSoftwareSetPropsMixin.SoftwareProperty |
Python | aws_cdk.cfn_property_mixins.aws_thinclient.CfnSoftwareSetPropsMixin.SoftwareProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_thinclient » CfnSoftwareSetPropsMixin » SoftwareProperty |
Describes software.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_thinclient as thinclient } from '@aws-cdk/cfn-property-mixins';
const softwareProperty: thinclient.CfnSoftwareSetPropsMixin.SoftwareProperty = {
name: 'name',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the software component. |
| version? | string | The version of the software component. |
name?
Type:
string
(optional)
The name of the software component.
version?
Type:
string
(optional)
The version of the software component.

.NET
Go
Java
Python
TypeScript