Die vorliegende Übersetzung wurde maschinell erstellt. Im Falle eines Konflikts oder eines Widerspruchs zwischen dieser übersetzten Fassung und der englischen Fassung (einschließlich infolge von Verzögerungen bei der Übersetzung) ist die englische Fassung maßgeblich.
Konfigurationsdetails eines Amazon S3 Storage Lens-Dashboards anzeigen
Sie können ein Amazon S3 Storage Lens-Dashboard von der Amazon S3 S3-Konsole aus und SDK für Java aufrufen. AWS CLI
Um die Konfigurationsdetails des S3 Storage Lens-Dashboards anzuzeigen
Melden Sie sich bei der an AWS Management Console und öffnen Sie die Amazon S3 S3-Konsole unter https://console.aws.amazon.com/s3/
. -
Navigieren Sie im linken Navigationsbereich zu Storage Lens.
Wählen Sie Dashboards aus.
-
Klicken Sie in der Liste der Dashboards auf das Dashboard, das Sie anzeigen möchten. Sie können jetzt die Details Ihres Storage Lens-Dashboards einsehen.
Im folgenden Beispiel wird eine S3 Storage Lens-Konfiguration abgerufen, sodass Sie die Konfigurationsdetails anzeigen können. Wenn Sie diese Beispiele verwenden möchten, ersetzen Sie die
durch Ihre Informationen.user input placeholders
aws s3control get-storage-lens-configuration --account-id=
222222222222
--config-id=your-configuration-id
--region=us-east-1
Beispiel — Rufen Sie eine S3 Storage Lens-Konfiguration ab und zeigen Sie sie an
Das folgende Beispiel zeigt Ihnen, wie Sie eine S3 Storage Lens-Konfiguration SDK für Java abrufen, sodass Sie die Konfigurationsdetails anzeigen können. Wenn Sie dieses Beispiel verwenden möchten, ersetzen Sie
durch Ihre Informationen.user input
placeholders
package aws.example.s3control; import com.amazonaws.AmazonServiceException; import com.amazonaws.SdkClientException; import com.amazonaws.auth.profile.ProfileCredentialsProvider; import com.amazonaws.services.s3control.AWSS3Control; import com.amazonaws.services.s3control.AWSS3ControlClient; import com.amazonaws.services.s3control.model.GetStorageLensConfigurationRequest; import com.amazonaws.services.s3control.model.GetStorageLensConfigurationResult; import com.amazonaws.services.s3control.model.StorageLensConfiguration; import static com.amazonaws.regions.Regions.
US_WEST_2
; public class GetDashboard { public static void main(String[] args) { String configurationId = "ConfigurationId
"; String sourceAccountId = "111122223333
"; try { AWSS3Control s3ControlClient = AWSS3ControlClient.builder() .withCredentials(new ProfileCredentialsProvider()) .withRegion(US_WEST_2
) .build(); final StorageLensConfiguration configuration = s3ControlClient.getStorageLensConfiguration(new GetStorageLensConfigurationRequest() .withAccountId(sourceAccountId) .withConfigId(configurationId) ).getStorageLensConfiguration(); System.out.println(configuration.toString()); } catch (AmazonServiceException e) { // The call was transmitted successfully, but Amazon S3 couldn't process // it and returned an error response. e.printStackTrace(); } catch (SdkClientException e) { // Amazon S3 couldn't be contacted for a response, or the client // couldn't parse the response from Amazon S3. e.printStackTrace(); } } }