CfnSimulationProps
- class aws_cdk.aws_simspaceweaver.CfnSimulationProps(*, name, role_arn, maximum_duration=None, schema_s3_location=None, snapshot_s3_location=None)
Bases:
objectProperties for defining a
CfnSimulation.- Parameters:
name (
str) – The name of the simulation.role_arn (
str) – The Amazon Resource Name (ARN) of the AWS Identity and Access Management ( IAM ) role that the simulation assumes to perform actions. For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference . For more information about IAM roles, see IAM roles in the AWS Identity and Access Management User Guide .maximum_duration (
Optional[str]) – The maximum running time of the simulation, specified as a number of minutes (m or M), hours (h or H), or days (d or D). The simulation stops when it reaches this limit. The maximum value is14D, or its equivalent in the other units. The default value is14D. A value equivalent to0makes the simulation immediately transition toSTOPPINGas soon as it reachesSTARTED.schema_s3_location (
Union[IResolvable,S3LocationProperty,Dict[str,Any],None]) – The location of the simulation schema in Amazon Simple Storage Service ( Amazon S3 ). For more information about Amazon S3 , see the *Amazon Simple Storage Service User Guide* . Provide aSchemaS3Locationto start your simulation from a schema. If you provide aSchemaS3Locationthen you can’t provide aSnapshotS3Location.snapshot_s3_location (
Union[IResolvable,S3LocationProperty,Dict[str,Any],None]) –The location of the snapshot in Amazon Simple Storage Service ( Amazon S3 ). For more information about Amazon S3 , see the *Amazon Simple Storage Service User Guide* . Provide a
SnapshotS3Locationto start your simulation from a snapshot. If you provide aSnapshotS3Locationthen you can’t provide aSchemaS3Location.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_simspaceweaver as simspaceweaver cfn_simulation_props = simspaceweaver.CfnSimulationProps( name="name", role_arn="roleArn", # the properties below are optional maximum_duration="maximumDuration", schema_s3_location=simspaceweaver.CfnSimulation.S3LocationProperty( bucket_name="bucketName", object_key="objectKey" ), snapshot_s3_location=simspaceweaver.CfnSimulation.S3LocationProperty( bucket_name="bucketName", object_key="objectKey" ) )
Attributes
- maximum_duration
The maximum running time of the simulation, specified as a number of minutes (m or M), hours (h or H), or days (d or D).
The simulation stops when it reaches this limit. The maximum value is
14D, or its equivalent in the other units. The default value is14D. A value equivalent to0makes the simulation immediately transition toSTOPPINGas soon as it reachesSTARTED.
- name
The name of the simulation.
- role_arn
The Amazon Resource Name (ARN) of the AWS Identity and Access Management ( IAM ) role that the simulation assumes to perform actions.
For more information about ARNs, see Amazon Resource Names (ARNs) in the AWS General Reference . For more information about IAM roles, see IAM roles in the AWS Identity and Access Management User Guide .
- schema_s3_location
The location of the simulation schema in Amazon Simple Storage Service ( Amazon S3 ).
For more information about Amazon S3 , see the *Amazon Simple Storage Service User Guide* .
Provide a
SchemaS3Locationto start your simulation from a schema.If you provide a
SchemaS3Locationthen you can’t provide aSnapshotS3Location.
- snapshot_s3_location
The location of the snapshot in Amazon Simple Storage Service ( Amazon S3 ).
For more information about Amazon S3 , see the *Amazon Simple Storage Service User Guide* .
Provide a
SnapshotS3Locationto start your simulation from a snapshot.If you provide a
SnapshotS3Locationthen you can’t provide aSchemaS3Location.