interface SessionKeysAbpV11Property
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnWirelessDevicePropsMixin.SessionKeysAbpV11Property |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnWirelessDevicePropsMixin_SessionKeysAbpV11Property |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnWirelessDevicePropsMixin.SessionKeysAbpV11Property |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnWirelessDevicePropsMixin.SessionKeysAbpV11Property |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » CfnWirelessDevicePropsMixin » SessionKeysAbpV11Property |
Session keys for ABP v1.1.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const sessionKeysAbpV11Property: iotwireless_mixins.CfnWirelessDevicePropsMixin.SessionKeysAbpV11Property = {
appSKey: 'appSKey',
fNwkSIntKey: 'fNwkSIntKey',
nwkSEncKey: 'nwkSEncKey',
sNwkSIntKey: 'sNwkSIntKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The AppSKey is a secret key, which you should handle in a similar way as you would an application password. |
| f | string | The FNwkSIntKey is a secret key, which you should handle in a similar way as you would an application password. |
| nwk | string | The NwkSEncKey is a secret key, which you should handle in a similar way as you would an application password. |
| s | string | The SNwkSIntKey is a secret key, which you should handle in a similar way as you would an application password. |
appSKey?
Type:
string
(optional)
The AppSKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the AppSKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
fNwkSIntKey?
Type:
string
(optional)
The FNwkSIntKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the FNwkSIntKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
nwkSEncKey?
Type:
string
(optional)
The NwkSEncKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the NwkSEncKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.
sNwkSIntKey?
Type:
string
(optional)
The SNwkSIntKey is a secret key, which you should handle in a similar way as you would an application password.
You can protect the SNwkSIntKey value by storing it in the AWS Secrets Manager and use the secretsmanager to reference this value.

.NET
Go
Java
Python
TypeScript