πAWS Core
The module that provides the core AWS services for the other modules.
Imports
import { AwsCoreService } from 'niro-health';import { AwsCoreModule } from 'niro-health';import type { IAwsCoreService } from 'niro-health';Application Variables
name
example
reference
description
How to set variable
import { Inject, Injectable } from '@nestjs/common';
import type { IConfigurationService } from 'niro-health';
@Injectable()
export class AppService {
constructor(
@Inject('IConfigurationService')
private readonly configurationService: IConfigurationService,
) {
this.initialize();
}
async initialize() {
this.configurationService.setVariable('aws_api_version', 'latest');
this.configurationService.setVariable('aws_region', 'us-east-1');
}
}Method of Use
With dependencies
Interface
Service
Properties
Property
Scope
Description
Methods
Method
Scope
Description
Last updated