-
Notifications
You must be signed in to change notification settings - Fork 864
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AWS IoT FleetWise now includes campaign parameters to store and forwa…
…rd data, configure MQTT topic as a data destination, and collect diagnostic trouble code data. It includes APIs for network agnostic data collection using custom decoding interfaces, and monitoring the last known state of vehicles.
- Loading branch information
1 parent
9d5832e
commit d7bad7b
Showing
144 changed files
with
12,799 additions
and
673 deletions.
There are no files selected for viewing
561 changes: 546 additions & 15 deletions
561
generator/ServiceModels/iotfleetwise/iotfleetwise-2021-06-17.api.json
Large diffs are not rendered by default.
Oops, something went wrong.
485 changes: 429 additions & 56 deletions
485
generator/ServiceModels/iotfleetwise/iotfleetwise-2021-06-17.docs.json
Large diffs are not rendered by default.
Oops, something went wrong.
930 changes: 877 additions & 53 deletions
930
generator/ServiceModels/iotfleetwise/iotfleetwise-2021-06-17.normal.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
79 changes: 79 additions & 0 deletions
79
sdk/src/Services/IoTFleetWise/Generated/Model/ConditionBasedSignalFetchConfig.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file is distributed | ||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either | ||
* express or implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
*/ | ||
|
||
/* | ||
* Do not modify this file. This file is generated from the iotfleetwise-2021-06-17.normal.json service model. | ||
*/ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Xml.Serialization; | ||
using System.Text; | ||
using System.IO; | ||
using System.Net; | ||
|
||
using Amazon.Runtime; | ||
using Amazon.Runtime.Internal; | ||
|
||
#pragma warning disable CS0612,CS0618,CS1570 | ||
namespace Amazon.IoTFleetWise.Model | ||
{ | ||
/// <summary> | ||
/// Specifies the condition under which a signal fetch occurs. | ||
/// </summary> | ||
public partial class ConditionBasedSignalFetchConfig | ||
{ | ||
private string _conditionExpression; | ||
private TriggerMode _triggerMode; | ||
|
||
/// <summary> | ||
/// Gets and sets the property ConditionExpression. | ||
/// <para> | ||
/// The condition that must be satisfied to trigger a signal fetch. | ||
/// </para> | ||
/// </summary> | ||
[AWSProperty(Required=true, Sensitive=true, Min=1, Max=400)] | ||
public string ConditionExpression | ||
{ | ||
get { return this._conditionExpression; } | ||
set { this._conditionExpression = value; } | ||
} | ||
|
||
// Check to see if ConditionExpression property is set | ||
internal bool IsSetConditionExpression() | ||
{ | ||
return this._conditionExpression != null; | ||
} | ||
|
||
/// <summary> | ||
/// Gets and sets the property TriggerMode. | ||
/// <para> | ||
/// Indicates the mode in which the signal fetch is triggered. | ||
/// </para> | ||
/// </summary> | ||
[AWSProperty(Required=true)] | ||
public TriggerMode TriggerMode | ||
{ | ||
get { return this._triggerMode; } | ||
set { this._triggerMode = value; } | ||
} | ||
|
||
// Check to see if TriggerMode property is set | ||
internal bool IsSetTriggerMode() | ||
{ | ||
return this._triggerMode != null; | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.