Ci sono altri AWS SDK esempi disponibili nel repository AWS Doc SDK Examples
Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.
Listino prezzi AWS esempi di utilizzo di Tools for PowerShell
I seguenti esempi di codice mostrano come eseguire azioni e implementare scenari comuni utilizzando AWS Tools for PowerShell with Listino prezzi AWS.
Le operazioni sono estratti di codice da programmi più grandi e devono essere eseguite nel contesto. Mentre le azioni mostrano come richiamare le singole funzioni di servizio, è possibile visualizzare le azioni nel loro contesto negli scenari correlati.
Ogni esempio include un collegamento al codice sorgente completo, in cui è possibile trovare istruzioni su come configurare ed eseguire il codice nel contesto.
Argomenti
Azioni
Il seguente esempio di codice mostra come utilizzareGet-PLSAttributeValue
.
- Strumenti per PowerShell
-
Esempio 1: restituisce i valori per l'attributo volumeType '' per Amazon EC2 nella regione us-east-1.
Get-PLSAttributeValue -ServiceCode AmazonEC2 -AttributeName "volumeType" -region us-east-1
Output:
Value ----- Cold HDD General Purpose Magnetic Provisioned IOPS Throughput Optimized HDD
-
Per API i dettagli, vedere GetAttributeValuesin AWS Tools for PowerShell Cmdlet Reference.
-
Il seguente esempio di codice mostra come utilizzare. Get-PLSProduct
- Strumenti per PowerShell
-
Esempio 1: dettagli dei resi di tutti i prodotti per AmazonEC2.
Get-PLSProduct -ServiceCode AmazonEC2 -Region us-east-1
Output:
{"product":{"productFamily":"Compute Instance","attributes":{"enhancedNetworkingSupported":"Yes","memory":"30.5 GiB","dedicatedEbsThroughput":"800 Mbps","vcpu":"4","locationType":"AWS Region","storage":"EBS only","instanceFamily":"Memory optimized","operatingSystem":"SUSE","physicalProcessor":"Intel Xeon E5-2686 v4 (Broadwell)","clockSpeed":"2.3 GHz","ecu":"Variable","networkPerformance":"Up to 10 Gigabit","servicename":"Amazon Elastic Compute Cloud","instanceType":"r4.xlarge","tenancy":"Shared","usagetype":"USW2-BoxUsage:r4.xlarge","normalizationSizeFactor":"8","processorFeatures":"Intel AVX, Intel AVX2, Intel Turbo","servicecode":"AmazonEC2","licenseModel":"No License required","currentGeneration":"Yes","preInstalledSw":"NA","location":"US West (Oregon)","processorArchitecture":"64-bit","operation":"RunInstances:000g"},...
Esempio 2: restituisce i dati per Amazon EC2 nella regione us-east-1 filtrati per tipi di volume di «General Purpose» supportati da -backed. SSD
Get-PLSProduct -ServiceCode AmazonEC2 -Filter @{Type="TERM_MATCH";Field="volumeType";Value="General Purpose"},@{Type="TERM_MATCH";Field="storageMedia";Value="SSD-backed"} -Region us-east-1
Output:
{"product":{"productFamily":"Storage","attributes":{"storageMedia":"SSD-backed","maxThroughputvolume":"160 MB/sec","volumeType":"General Purpose","maxIopsvolume":"10000",...
-
Per i dettagli, vedere in Cmdlet Reference. API GetProductsAWS Tools for PowerShell
-
Il seguente esempio di codice mostra come utilizzare. Get-PLSService
- Strumenti per PowerShell
-
Esempio 1: restituisce i metadati per tutti i codici di servizio disponibili nella regione us-east-1.
Get-PLSService -Region us-east-1
Output:
AttributeNames ServiceCode -------------- ----------- {productFamily, servicecode, groupDescription, termType...} AWSBudgets {productFamily, servicecode, termType, usagetype...} AWSCloudTrail {productFamily, servicecode, termType, usagetype...} AWSCodeCommit {productFamily, servicecode, termType, usagetype...} AWSCodeDeploy {productFamily, servicecode, termType, usagetype...} AWSCodePipeline {productFamily, servicecode, termType, usagetype...} AWSConfig ...
Esempio 2: restituisce i metadati per il EC2 servizio Amazon nella regione us-east-1.
Get-PLSService -ServiceCode AmazonEC2 -Region us-east-1
Output:
AttributeNames ServiceCode -------------- ----------- {volumeType, maxIopsvolume, instanceCapacity10xlarge, locationType...} AmazonEC2
-
Per API i dettagli, vedere DescribeServicesin AWS Tools for PowerShell Cmdlet Reference.
-