42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<!--
|
|
|
|
Copyright © 2016-2021 The Thingsboard Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License 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.
|
|
|
|
-->
|
|
<form [formGroup]="awsSnsProviderConfigurationFormGroup" style="padding-bottom: 16px;">
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>admin.aws-access-key-id</mat-label>
|
|
<input required matInput formControlName="accessKeyId">
|
|
<mat-error *ngIf="awsSnsProviderConfigurationFormGroup.get('accessKeyId').hasError('required')">
|
|
{{ 'admin.aws-access-key-id-required' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>admin.aws-secret-access-key</mat-label>
|
|
<input required type="password" matInput formControlName="secretAccessKey">
|
|
<tb-toggle-password matSuffix></tb-toggle-password>
|
|
<mat-error *ngIf="awsSnsProviderConfigurationFormGroup.get('secretAccessKey').hasError('required')">
|
|
{{ 'admin.aws-secret-access-key-required' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>admin.aws-region</mat-label>
|
|
<input required matInput formControlName="region">
|
|
<mat-error *ngIf="awsSnsProviderConfigurationFormGroup.get('region').hasError('required')">
|
|
{{ 'admin.aws-region-required' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
</form>
|