interface DefaultApplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GameLiftStreams.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsgameliftstreams#CfnStreamGroupPropsMixin_DefaultApplicationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.gameliftstreams.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
Python | aws_cdk.cfn_property_mixins.aws_gameliftstreams.CfnStreamGroupPropsMixin.DefaultApplicationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_gameliftstreams » CfnStreamGroupPropsMixin » DefaultApplicationProperty |
Represents the default Amazon GameLift Streams application that a stream group hosts.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_gameliftstreams as gameliftstreams } from '@aws-cdk/cfn-property-mixins';
const defaultApplicationProperty: gameliftstreams.CfnStreamGroupPropsMixin.DefaultApplicationProperty = {
arn: 'arn',
id: 'id',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | An Amazon Resource Name (ARN) that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6 . |
| id? | string | An ID that uniquely identifies the application resource. |
arn?
Type:
string
(optional)
An Amazon Resource Name (ARN) that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6 .
id?
Type:
string
(optional)
An ID that uniquely identifies the application resource.
Example ID: a-9ZY8X7Wv6 .

.NET
Go
Java
Python
TypeScript